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

Last change on this file since 1958 was 1958, checked in by liebster, 14 years ago

Clean-up code http://codereview.corp.quintagroup.com/40241/show

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