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:03:47 +00:00
|
|
|
'testborg',
|
2010-01-05 04:47:51 +00:00
|
|
|
):
|
|
|
|
suite.addTest(DocTestSuite('terminatorlib.' + name))
|
|
|
|
return suite
|