Mercurial > hgsubversion
comparison tests/run.py @ 235:2969a20e0eef
Add support for user:pass@url repositories to be hg-like
author | Daniel Tang <dytang@cs.purdue.edu> |
---|---|
date | Mon, 06 Apr 2009 11:19:51 -0400 |
parents | f80132c5fea5 |
children | 521d9c1bb11d |
comparison
equal
deleted
inserted
replaced
234:33e885f5f86a | 235:2969a20e0eef |
---|---|
20 import test_push_dirs | 20 import test_push_dirs |
21 import test_push_eol | 21 import test_push_eol |
22 import test_rebuildmeta | 22 import test_rebuildmeta |
23 import test_tags | 23 import test_tags |
24 import test_utility_commands | 24 import test_utility_commands |
25 import test_urls | |
25 | 26 |
26 def suite(): | 27 def suite(): |
27 return unittest.TestSuite([test_binaryfiles.suite(), | 28 return unittest.TestSuite([test_binaryfiles.suite(), |
28 test_diff.suite(), | 29 test_diff.suite(), |
29 test_externals.suite(), | 30 test_externals.suite(), |
40 test_push_dirs.suite(), | 41 test_push_dirs.suite(), |
41 test_push_eol.suite(), | 42 test_push_eol.suite(), |
42 test_rebuildmeta.suite(), | 43 test_rebuildmeta.suite(), |
43 test_tags.suite(), | 44 test_tags.suite(), |
44 test_utility_commands.suite(), | 45 test_utility_commands.suite(), |
46 test_urls.suite(), | |
45 ]) | 47 ]) |
46 | 48 |
47 if __name__ == '__main__': | 49 if __name__ == '__main__': |
48 runner = unittest.TextTestRunner() | 50 runner = unittest.TextTestRunner() |
49 runner.run(suite()) | 51 runner.run(suite()) |