
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2469 fd906abe-77d9-0310-91a1-e0d9ade77398
27 lines
639 B
Python
Executable file
27 lines
639 B
Python
Executable file
# $Id$
|
|
|
|
import unittest, doctest
|
|
import os
|
|
from zope.testing.doctestunit import DocFileSuite
|
|
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),
|
|
DocFileSuite('README.txt', optionflags=flags),
|
|
))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(defaultTest='test_suite')
|