21 lines
401 B
Python
21 lines
401 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- 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.flock
|
||
|
|
||
|
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()
|