source: products/quintagroup.referencedatagridfield/trunk/quintagroup/referencedatagridfield/tests.py @ 2257

Last change on this file since 2257 was 2257, checked in by mylan, 14 years ago

Initial import package skeleton

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1import unittest
2
3#from zope.testing import doctestunit
4#from zope.component import testing
5from Testing import ZopeTestCase as ztc
6
7from Products.Five import fiveconfigure
8from Products.PloneTestCase import PloneTestCase as ptc
9from Products.PloneTestCase.layer import PloneSite
10ptc.setupPloneSite()
11
12import quintagroup.referencedatagridfield
13
14
15class TestCase(ptc.PloneTestCase):
16
17    class layer(PloneSite):
18
19        @classmethod
20        def setUp(cls):
21            fiveconfigure.debug_mode = True
22            ztc.installPackage(quintagroup.referencedatagridfield)
23            fiveconfigure.debug_mode = False
24
25        @classmethod
26        def tearDown(cls):
27            pass
28
29
30def test_suite():
31    return unittest.TestSuite([
32
33        # Unit tests
34        #doctestunit.DocFileSuite(
35        #    'README.txt', package='quintagroup.referencedatagridfield',
36        #    setUp=testing.setUp, tearDown=testing.tearDown),
37
38        #doctestunit.DocTestSuite(
39        #    module='quintagroup.referencedatagridfield.mymodule',
40        #    setUp=testing.setUp, tearDown=testing.tearDown),
41
42
43        # Integration tests that use PloneTestCase
44        #ztc.ZopeDocFileSuite(
45        #    'README.txt', package='quintagroup.referencedatagridfield',
46        #    test_class=TestCase),
47
48        #ztc.FunctionalDocFileSuite(
49        #    'browser.txt', package='quintagroup.referencedatagridfield',
50        #    test_class=TestCase),
51
52        ])
53
54if __name__ == '__main__':
55    unittest.main(defaultTest='test_suite')
Note: See TracBrowser for help on using the repository browser.