Package platecom :: Package langview :: Package tests :: Module test_langview
[hide private]
[frames] | no frames]

Source Code for Module icsemantic.langfallback.tests.test_langview

 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.langview.config import * 
13  import base 
14   
15 -def test_suite():
16 return unittest.TestSuite([ 17 18 # Unit tests 19 ztc.ZopeDocTestSuite( 20 module=PACKAGENAME + '.Extensions.install', 21 test_class=base.icSemanticTestCase), 22 23 # Integration tests that use PloneTestCase 24 ztc.ZopeDocFileSuite( 25 'README.txt', package=PACKAGENAME, 26 test_class=base.icSemanticTestCase), 27 28 ztc.FunctionalDocFileSuite( 29 'browser.txt', package=PACKAGENAME, 30 test_class=base.icSemanticFunctionalTestCase), 31 32 ])
33 34 if __name__ == '__main__': 35 unittest.main(defaultTest='test_suite') 36