cybertools/cybertools/composer/schema/tests.py

21 lines
513 B
Python
Executable file

# cybertools.composer.schema.tests
import unittest, doctest
class Test(unittest.TestCase):
"Basic tests for the cybertools.composer.schema package."
def testBasics(self):
pass
def test_suite():
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
return unittest.TestSuite((
unittest.TestLoader().loadTestsFromTestCase(Test),
doctest.DocFileSuite('README.txt', optionflags=flags),
))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')