nutools/lib/pyulib/test/test_base/__init__.py

19 lines
405 B
Python
Raw Normal View History

2013-08-27 15:14:44 +04:00
# -*- coding: utf-8 mode: python -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
__all__ = ('suite',
)
import test_base
import test_args
import test_config
import test_control
def suite():
from base import TestSuite
ts = TestSuite()
ts.addTest(test_base.suite())
ts.addTest(test_args.suite())
ts.addTest(test_config.suite())
ts.addTest(test_control.suite())
return ts