
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1146 fd906abe-77d9-0310-91a1-e0d9ade77398
14 lines
417 B
Python
Executable file
14 lines
417 B
Python
Executable file
# $Id$
|
|
|
|
import unittest, doctest
|
|
from zope.testing.doctestunit import DocFileSuite
|
|
from zope.app.testing.functional import FunctionalDocFileSuite
|
|
|
|
|
|
def test_suite():
|
|
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
|
|
browser = FunctionalDocFileSuite('liquid/README.txt', optionflags=flags)
|
|
return unittest.TestSuite((browser,))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(defaultTest='test_suite')
|