Mercurial > hgsubversion
comparison tests/run.py @ 67:e319c9168910
hg_delta_editor: register svn file copies
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Wed, 05 Nov 2008 13:37:07 +0100 |
parents | 1f8854804795 |
children | 6c9b7cf1c5aa |
comparison
equal
deleted
inserted
replaced
66:a31968146f3c | 67:e319c9168910 |
---|---|
4 | 4 |
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_push_command | 10 import test_push_command |
10 import test_tags | 11 import test_tags |
11 | 12 |
12 def suite(): | 13 def suite(): |
13 return unittest.TestSuite([test_fetch_command.suite(), | 14 return unittest.TestSuite([test_fetch_command.suite(), |
14 test_fetch_command_regexes.suite(), | 15 test_fetch_command_regexes.suite(), |
16 test_fetch_renames.suite(), | |
15 test_push_command.suite(), | 17 test_push_command.suite(), |
16 test_tags.suite(), | 18 test_tags.suite(), |
17 ]) | 19 ]) |
18 | 20 |
19 if __name__ == '__main__': | 21 if __name__ == '__main__': |