14 lines
301 B
Python
14 lines
301 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',
|
||
|
'borg',
|
||
|
):
|
||
|
suite.addTest(DocTestSuite('terminatorlib.' + name))
|
||
|
return suite
|