Phillip J. Eby | 069159b | 2006-04-18 04:05:34 +0000 | [diff] [blame^] | 1 | """Tests for setuptools. |
2 | |||||
3 | The tests for setuptools are defined in the setuptools.tests package; | ||||
4 | this runs them from there. | ||||
5 | """ | ||||
6 | |||||
7 | import test.test_support | ||||
8 | from setuptools.command.test import ScanningLoader | ||||
9 | |||||
10 | def test_main(): | ||||
11 | test.test_support.run_suite( | ||||
12 | ScanningLoader().loadTestsFromName('setuptools.tests') | ||||
13 | ) | ||||
14 | |||||
15 | if __name__ == "__main__": | ||||
16 | test_main() |