source: products/quintagroup.seoptimizer/branches/refactoring2.3.0/quintagroup/seoptimizer/tests/test_doctest.py @ 1908

Last change on this file since 1908 was 1895, checked in by mylan, 14 years ago

#161: Fix doctests and update browser.txt

File size: 621 bytes
Line 
1import unittest
2import doctest
3
4from zope.testing import doctestunit
5from zope.component import testing, eventtesting
6
7from base import *
8
9def test_suite():
10    return unittest.TestSuite([
11
12        # Demonstrate the main content types
13        ztc.FunctionalDocFileSuite(
14            'browser.txt', package='quintagroup.seoptimizer.tests',
15            test_class=FunctionalTestCaseNotInstalled, globs=globals(),
16            optionflags=doctest.REPORT_ONLY_FIRST_FAILURE |
17                doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS),
18
19        ])
20
21if __name__ == '__main__':
22    unittest.main(defaultTest='test_suite')
Note: See TracBrowser for help on using the repository browser.