2010-01-05 04:47:51 +00:00
|
|
|
"""Load up the tests."""
|
|
|
|
from unittest import TestSuite
|
|
|
|
from doctest import DocTestSuite, ELLIPSIS
|
|
|
|
|
|
|
|
def test_suite():
|
|
|
|
suite = TestSuite()
|
|
|
|
for name in (
|
|
|
|
'config',
|
|
|
|
'plugin',
|
2010-01-14 23:33:06 +00:00
|
|
|
'cwd',
|
2010-01-14 23:40:02 +00:00
|
|
|
'factory',
|
2010-01-14 23:48:15 +00:00
|
|
|
'util',
|
2010-01-18 13:21:03 +00:00
|
|
|
'tests.testborg',
|
|
|
|
'tests.testsignalman',
|
2010-01-05 04:47:51 +00:00
|
|
|
):
|
|
|
|
suite.addTest(DocTestSuite('terminatorlib.' + name))
|
|
|
|
return suite
|