25 lines
590 B
Python
Executable file
25 lines
590 B
Python
Executable file
|
|
import unittest, doctest
|
|
import os
|
|
from zope.interface.verify import verifyClass
|
|
|
|
|
|
dataDirectory = os.path.join(os.path.dirname(__file__), 'testdata')
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
"Basic tests for the loops.external package."
|
|
|
|
def testSomething(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')
|