20 lines
474 B
Python
Executable file
20 lines
474 B
Python
Executable file
|
|
import unittest, doctest
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
"Basic tests for the cybertools.tracking.comment package."
|
|
|
|
def testBasics(self):
|
|
pass
|
|
|
|
|
|
def test_suite():
|
|
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
|
|
return unittest.TestSuite((
|
|
unittest.makeSuite(Test),
|
|
doctest.DocFileSuite('README.txt', optionflags=flags),
|
|
))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(defaultTest='test_suite')
|