Mercurial > hgsubversion
comparison tests/run.py @ 125:c35f59aa200e
Move and complete execute bit conversion tests into test_fetch_exec.py
| author | Patrick Mezard <pmezard@gmail.com> |
|---|---|
| date | Wed, 10 Dec 2008 11:03:18 -0600 |
| parents | 3afe404042a3 |
| children | 24a64fb0e74b |
comparison
equal
deleted
inserted
replaced
| 124:291925677a9f | 125:c35f59aa200e |
|---|---|
| 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_branches | 7 import test_fetch_branches |
| 8 import test_fetch_command | 8 import test_fetch_command |
| 9 import test_fetch_command_regexes | 9 import test_fetch_command_regexes |
| 10 import test_fetch_exec | |
| 10 import test_fetch_renames | 11 import test_fetch_renames |
| 11 import test_fetch_truncated | 12 import test_fetch_truncated |
| 12 import test_push_command | 13 import test_push_command |
| 13 import test_push_renames | 14 import test_push_renames |
| 14 import test_push_dirs | 15 import test_push_dirs |
| 17 | 18 |
| 18 def suite(): | 19 def suite(): |
| 19 return unittest.TestSuite([test_fetch_branches.suite(), | 20 return unittest.TestSuite([test_fetch_branches.suite(), |
| 20 test_fetch_command.suite(), | 21 test_fetch_command.suite(), |
| 21 test_fetch_command_regexes.suite(), | 22 test_fetch_command_regexes.suite(), |
| 23 test_fetch_exec.suite(), | |
| 22 test_fetch_renames.suite(), | 24 test_fetch_renames.suite(), |
| 23 test_fetch_truncated.suite(), | 25 test_fetch_truncated.suite(), |
| 24 test_push_command.suite(), | 26 test_push_command.suite(), |
| 25 test_push_renames.suite(), | 27 test_push_renames.suite(), |
| 26 test_push_dirs.suite(), | 28 test_push_dirs.suite(), |
