source: products/quintagroup.portlet.static/trunk/quintagroup/portlet/static/tests/test_configlet.py @ 3218

Last change on this file since 3218 was 616, checked in by fenix, 18 years ago

fixed view template for campaign content type and increment product version

  • Property svn:eol-style set to native
File size: 523 bytes
Line 
1import unittest
2import doctest
3from Testing import ZopeTestCase as ztc
4
5from quintagroup.portlet.static.tests.base import FunctionalTestCase
6
7def test_suite():
8    return unittest.TestSuite([
9
10        ztc.ZopeDocFileSuite(
11            'configlet.txt', package='quintagroup.portlet.static',
12            test_class=FunctionalTestCase,
13            optionflags=doctest.REPORT_ONLY_FIRST_FAILURE | doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS),
14
15     ])
16
17if __name__ == '__main__':
18    unittest.main(defaultTest='test_suite')
Note: See TracBrowser for help on using the repository browser.