comparison tests/run.py @ 88:3b60f223893a

fetch_command: handle nullid parent in stupid non-diffy mode
author Patrick Mezard <pmezard@gmail.com>
date Fri, 14 Nov 2008 16:18:24 -0600
parents 6c9b7cf1c5aa
children 9b5e528f67f8
comparison
equal deleted inserted replaced
87:b033d74be76b 88:3b60f223893a
5 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) 5 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
6 6
7 import test_fetch_command 7 import test_fetch_command
8 import test_fetch_command_regexes 8 import test_fetch_command_regexes
9 import test_fetch_renames 9 import test_fetch_renames
10 import test_fetch_truncated
10 import test_push_command 11 import test_push_command
11 import test_push_renames 12 import test_push_renames
12 import test_push_dirs 13 import test_push_dirs
13 import test_tags 14 import test_tags
14 15
15 def suite(): 16 def suite():
16 return unittest.TestSuite([test_fetch_command.suite(), 17 return unittest.TestSuite([test_fetch_command.suite(),
17 test_fetch_command_regexes.suite(), 18 test_fetch_command_regexes.suite(),
18 test_fetch_renames.suite(), 19 test_fetch_renames.suite(),
20 test_fetch_truncated.suite(),
19 test_push_command.suite(), 21 test_push_command.suite(),
20 test_push_renames.suite(), 22 test_push_renames.suite(),
21 test_push_dirs.suite(), 23 test_push_dirs.suite(),
22 test_tags.suite(), 24 test_tags.suite(),
23 ]) 25 ])