Changeset 3163 in products for quintagroup.plonegooglesitemaps/trunk/quintagroup/plonegooglesitemaps/tests/testSecurity.py
- Timestamp:
- Apr 20, 2011 4:02:03 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quintagroup.plonegooglesitemaps/trunk/quintagroup/plonegooglesitemaps/tests/testSecurity.py
r3152 r3163 2 2 # Tests related to general Sitemap type. 3 3 # 4 from base import * 4 from quintagroup.plonegooglesitemaps.tests.base \ 5 import FunctionalTestCase, IMobileMarker 6 from quintagroup.plonegooglesitemaps.tests.XMLParser import parse 7 8 import unittest 5 9 from zope.interface import alsoProvides 6 from Products.Archetypes import atapi7 10 from Products.CMFPlone.utils import _createObjectByType 8 11 … … 124 127 125 128 def test_suite(): 126 from unittest import TestSuite, makeSuite 127 suite = TestSuite() 128 suite.addTest(makeSuite(TestSecurityConfigletManager)) 129 suite.addTest(makeSuite(TestSecurityConfigletNotManager)) 130 suite.addTest(makeSuite(TestSecuritySiteMaps)) 129 suite = unittest.TestSuite() 130 suite.addTest(unittest.makeSuite(TestSecurityConfigletManager)) 131 suite.addTest(unittest.makeSuite(TestSecurityConfigletNotManager)) 132 suite.addTest(unittest.makeSuite(TestSecuritySiteMaps)) 131 133 return suite 132 134
Note: See TracChangeset
for help on using the changeset viewer.