source: waeup/branches/ulif-namespace/src/sirp/tests/test_waeup.py @ 4791

Last change on this file since 4791 was 4789, checked in by uli, 15 years ago

Merge changes from ulif-layout back into trunk (finally).

  • Property svn:eol-style set to native
File size: 371 bytes
Line 
1##
2## test_waeuptest.py
3"""
4Test setup for the waeup package.
5"""
6import grok
7import zope.component.eventtesting
8from waeup.testing import FunctionalLayer
9
10def setUpZope(test):
11    zope.component.eventtesting.setUp(test)
12
13# Register all tests in the waeup_ng package
14test_suite = grok.testing.register_all_tests(
15    'waeup', usetup=setUpZope,
16    layer=FunctionalLayer)
Note: See TracBrowser for help on using the repository browser.