Mercurial > hgsubversion
comparison tests/run.py @ 347:537de0300510
Remove the 'outgoing' wrapper, and use the Mercurial infrastructure instead.
| author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
|---|---|
| date | Fri, 22 May 2009 15:12:31 +0200 |
| parents | 47c0110046dc |
| children | d19843ac13c9 |
comparison
equal
deleted
inserted
replaced
| 346:4b992ebdecc6 | 347:537de0300510 |
|---|---|
| 1 import os | 1 import os |
| 2 import sys | 2 import sys |
| 3 import unittest | 3 import unittest |
| 4 | 4 |
| 5 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | 5 import test_util |
| 6 | |
| 7 import test_binaryfiles | 6 import test_binaryfiles |
| 8 import test_diff | 7 import test_diff |
| 9 import test_externals | 8 import test_externals |
| 10 import test_fetch_branches | 9 import test_fetch_branches |
| 11 import test_fetch_command | 10 import test_fetch_command |
| 19 import test_push_command | 18 import test_push_command |
| 20 import test_push_renames | 19 import test_push_renames |
| 21 import test_push_dirs | 20 import test_push_dirs |
| 22 import test_push_eol | 21 import test_push_eol |
| 23 import test_rebuildmeta | 22 import test_rebuildmeta |
| 23 import test_svnwrap | |
| 24 import test_tags | 24 import test_tags |
| 25 import test_utility_commands | 25 import test_utility_commands |
| 26 import test_urls | 26 import test_urls |
| 27 | 27 |
| 28 def suite(): | 28 def suite(): |
| 41 test_push_command.suite(), | 41 test_push_command.suite(), |
| 42 test_push_renames.suite(), | 42 test_push_renames.suite(), |
| 43 test_push_dirs.suite(), | 43 test_push_dirs.suite(), |
| 44 test_push_eol.suite(), | 44 test_push_eol.suite(), |
| 45 test_rebuildmeta.suite(), | 45 test_rebuildmeta.suite(), |
| 46 test_svnwrap.suite(), | |
| 46 test_tags.suite(), | 47 test_tags.suite(), |
| 47 test_utility_commands.suite(), | 48 test_utility_commands.suite(), |
| 48 test_urls.suite(), | 49 test_urls.suite(), |
| 49 ]) | 50 ]) |
| 50 | 51 |
