Mercurial > hgsubversion
comparison tests/run.py @ 155:ba801f44d240
utility_commands: Implement rebuildmeta so that metadata can be rebuilt.
hg_delta_editor: Fixed some longstanding branch_info bugs detected while
rebuilding meta.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 23 Dec 2008 22:19:26 -0600 |
parents | 46f6b872c988 |
children | 4f26fa049452 |
comparison
equal
deleted
inserted
replaced
154:6fa97cfbf62f | 155:ba801f44d240 |
---|---|
14 import test_fetch_truncated | 14 import test_fetch_truncated |
15 import test_push_command | 15 import test_push_command |
16 import test_push_renames | 16 import test_push_renames |
17 import test_push_dirs | 17 import test_push_dirs |
18 import test_push_eol | 18 import test_push_eol |
19 import test_rebuildmeta | |
19 import test_tags | 20 import test_tags |
20 import test_utility_commands | 21 import test_utility_commands |
21 | 22 |
22 def suite(): | 23 def suite(): |
23 return unittest.TestSuite([test_diff.suite(), | 24 return unittest.TestSuite([test_diff.suite(), |
30 test_fetch_truncated.suite(), | 31 test_fetch_truncated.suite(), |
31 test_push_command.suite(), | 32 test_push_command.suite(), |
32 test_push_renames.suite(), | 33 test_push_renames.suite(), |
33 test_push_dirs.suite(), | 34 test_push_dirs.suite(), |
34 test_push_eol.suite(), | 35 test_push_eol.suite(), |
36 test_rebuildmeta.suite(), | |
35 test_tags.suite(), | 37 test_tags.suite(), |
36 test_utility_commands.suite(), | 38 test_utility_commands.suite(), |
37 ]) | 39 ]) |
38 | 40 |
39 if __name__ == '__main__': | 41 if __name__ == '__main__': |