source: products/quintagroup.ploneformgen.readonlystringfield/trunk/quintagroup/ploneformgen/readonlystringfield/tests/test_docs.py

Last change on this file was 835, checked in by mylan, 17 years ago

validate_qploneskindump_form.vpy typo fixed

File size: 583 bytes
Line 
1import unittest
2import doctest
3
4from Testing import ZopeTestCase as ztc
5
6from quintagroup.ploneformgen.readonlystringfield.tests.base import \
7    ReadOnlyStringFieldFunctionalTestCase
8
9def test_suite():
10    return unittest.TestSuite([
11        ztc.FunctionalDocFileSuite(
12            'readonlystringfield.txt',
13            package='quintagroup.ploneformgen.readonlystringfield.tests',
14            test_class=ReadOnlyStringFieldFunctionalTestCase,
15            optionflags= doctest.REPORT_ONLY_FIRST_FAILURE | \
16                doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS),
17    ])
Note: See TracBrowser for help on using the repository browser.