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

21 lines
406 B
Python
Executable File

#!/usr/bin/env python2
# -*- coding: utf-8 mode: python -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
__all__ = ('suite',
)
from base import TC
import utools.base.functions
class ClassTest(TC):
def test(self):
pass
def suite():
from base import TestLoader
return TestLoader().loadTestsFromTestCase(ClassTest)
if __name__ == '__main__':
from base import main
main()