Mercurial > hgsubversion
comparison tests/run.py @ 96:9b5e528f67f8
Add a test to check EOLs are correctly converted
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Thu, 20 Nov 2008 22:41:16 -0600 |
parents | 3b60f223893a |
children | 3afe404042a3 |
comparison
equal
deleted
inserted
replaced
95:10dd34deac3b | 96:9b5e528f67f8 |
---|---|
9 import test_fetch_renames | 9 import test_fetch_renames |
10 import test_fetch_truncated | 10 import test_fetch_truncated |
11 import test_push_command | 11 import test_push_command |
12 import test_push_renames | 12 import test_push_renames |
13 import test_push_dirs | 13 import test_push_dirs |
14 import test_push_eol | |
14 import test_tags | 15 import test_tags |
15 | 16 |
16 def suite(): | 17 def suite(): |
17 return unittest.TestSuite([test_fetch_command.suite(), | 18 return unittest.TestSuite([test_fetch_command.suite(), |
18 test_fetch_command_regexes.suite(), | 19 test_fetch_command_regexes.suite(), |
19 test_fetch_renames.suite(), | 20 test_fetch_renames.suite(), |
20 test_fetch_truncated.suite(), | 21 test_fetch_truncated.suite(), |
21 test_push_command.suite(), | 22 test_push_command.suite(), |
22 test_push_renames.suite(), | 23 test_push_renames.suite(), |
23 test_push_dirs.suite(), | 24 test_push_dirs.suite(), |
25 test_push_eol.suite(), | |
24 test_tags.suite(), | 26 test_tags.suite(), |
25 ]) | 27 ]) |
26 | 28 |
27 if __name__ == '__main__': | 29 if __name__ == '__main__': |
28 runner = unittest.TextTestRunner() | 30 runner = unittest.TextTestRunner() |