comparison tests/test_fetch_exec.py @ 154:6fa97cfbf62f

fetch: Refactor extra creation to be shared by real and diff replay. Add convert-compatible meta information to extra.
author Augie Fackler <durin42@gmail.com>
date Tue, 23 Dec 2008 11:10:32 -0600
parents c35f59aa200e
children 91c818377703
comparison
equal deleted inserted replaced
153:46f6b872c988 154:6fa97cfbf62f
25 self.test_exec(True) 25 self.test_exec(True)
26 26
27 def test_empty_prop_val_executable(self, stupid=False): 27 def test_empty_prop_val_executable(self, stupid=False):
28 repo = self._load_fixture_and_fetch('executable_file_empty_prop.svndump', stupid) 28 repo = self._load_fixture_and_fetch('executable_file_empty_prop.svndump', stupid)
29 self.assertEqual(node.hex(repo['tip'].node()), 29 self.assertEqual(node.hex(repo['tip'].node()),
30 'b19e2bdd93da30b09c2396cfdb987cc85271249a') 30 '08e6b380bf291b361a418203a1cb9427213cd1fd')
31 self.assertEqual(repo['tip']['foo'].flags(), 'x') 31 self.assertEqual(repo['tip']['foo'].flags(), 'x')
32 32
33 def test_empty_prop_val_executable_stupid(self): 33 def test_empty_prop_val_executable_stupid(self):
34 self.test_empty_prop_val_executable(True) 34 self.test_empty_prop_val_executable(True)
35 35