Package platecom :: Package utils :: Package tests :: Module test_configlets
[hide private]
[frames] | no frames]

Source Code for Module icsemantic.core.tests.test_configlets

 1  import unittest 
 2   
 3  from zope.testing import doctestunit 
 4  from zope.component import testing 
 5  from Testing import ZopeTestCase as ztc 
 6  from Products.PloneTestCase import PloneTestCase as ptc 
 7   
 8  from Products.Five import zcml 
 9  from Products.Five import fiveconfigure 
10  from Products.PloneTestCase.layer import PloneSite 
11   
12  from platecom.utils.config import * 
13  import base 
14   
15 -class FunctionalTestConfiglets(base.icSemanticFunctionalTestCase):
16 """ 17 """
18
19 -def test_suite():
20 return unittest.TestSuite([ 21 22 # Integration tests that use PloneTestCase 23 ztc.FunctionalDocFileSuite( 24 'test_configlets.txt', 25 package=PACKAGENAME + '.tests', 26 test_class=FunctionalTestConfiglets), 27 28 ])
29 30 if __name__ == '__main__': 31 unittest.main(defaultTest='test_suite') 32