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

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

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

File size: 534 bytes
RevLine 
[1494]1import unittest
2import doctest
3
[1895]4from base import *
[1494]5
6def test_suite():
7    return unittest.TestSuite([
8
9        # Demonstrate the main content types
[1674]10        ztc.FunctionalDocFileSuite(
11            'browser.txt', package='quintagroup.seoptimizer.tests',
[1895]12            test_class=FunctionalTestCaseNotInstalled, globs=globals(),
[1494]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.