Mercurial > hgsubversion
comparison tests/run.py @ 83:6c9b7cf1c5aa
push_cmd: delete empty svn directories, refactor directory creation
| author | Patrick Mezard <pmezard@gmail.com> |
|---|---|
| date | Fri, 14 Nov 2008 16:18:24 -0600 |
| parents | e319c9168910 |
| children | 3b60f223893a |
comparison
equal
deleted
inserted
replaced
| 82:71de43e9f614 | 83:6c9b7cf1c5aa |
|---|---|
| 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_push_command | 10 import test_push_command |
| 11 import test_push_renames | |
| 12 import test_push_dirs | |
| 11 import test_tags | 13 import test_tags |
| 12 | 14 |
| 13 def suite(): | 15 def suite(): |
| 14 return unittest.TestSuite([test_fetch_command.suite(), | 16 return unittest.TestSuite([test_fetch_command.suite(), |
| 15 test_fetch_command_regexes.suite(), | 17 test_fetch_command_regexes.suite(), |
| 16 test_fetch_renames.suite(), | 18 test_fetch_renames.suite(), |
| 17 test_push_command.suite(), | 19 test_push_command.suite(), |
| 20 test_push_renames.suite(), | |
| 21 test_push_dirs.suite(), | |
| 18 test_tags.suite(), | 22 test_tags.suite(), |
| 19 ]) | 23 ]) |
| 20 | 24 |
| 21 if __name__ == '__main__': | 25 if __name__ == '__main__': |
| 22 runner = unittest.TextTestRunner() | 26 runner = unittest.TextTestRunner() |
