25 lines
623 B
Python
Executable file
25 lines
623 B
Python
Executable file
# tests.py
|
|
# Package loops.compound
|
|
|
|
import unittest, doctest
|
|
from zope.testing.doctestunit import DocFileSuite
|
|
from zope.app.testing import ztapi
|
|
from zope.interface.verify import verifyClass
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
"Basic tests for the loops.compound package."
|
|
|
|
def testSomething(self):
|
|
pass
|
|
|
|
|
|
def test_suite():
|
|
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
|
|
return unittest.TestSuite((
|
|
unittest.makeSuite(Test),
|
|
DocFileSuite('README.txt', optionflags=flags),
|
|
))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(defaultTest='test_suite')
|