14 lines
305 B
Python
14 lines
305 B
Python
"""Load up the tests."""
|
|
from unittest import TestSuite
|
|
from doctest import DocTestSuite, ELLIPSIS
|
|
|
|
def test_suite():
|
|
suite = TestSuite()
|
|
for name in (
|
|
'config',
|
|
'plugin',
|
|
'testborg',
|
|
):
|
|
suite.addTest(DocTestSuite('terminatorlib.' + name))
|
|
return suite
|