20 lines
377 B
Python
Executable File
20 lines
377 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
|
|
|
|
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()
|