Last change
on this file since 6292 was
5075,
checked in by uli, 15 years ago
|
Add custom checker for tests: 10 digits shall appear as '<10-DIGITS>'.
|
-
Property svn:eol-style set to
native
|
File size:
557 bytes
|
Rev | Line | |
---|
[3521] | 1 | ## |
---|
| 2 | ## test_waeuptest.py |
---|
| 3 | """ |
---|
[4920] | 4 | Test setup for the waeup.sirp package. |
---|
[3521] | 5 | """ |
---|
| 6 | import grok |
---|
[5075] | 7 | import re |
---|
[4789] | 8 | import zope.component.eventtesting |
---|
[5075] | 9 | from zope.testing import renormalizing |
---|
[4920] | 10 | from waeup.sirp.testing import FunctionalLayer |
---|
[4789] | 11 | |
---|
| 12 | def setUpZope(test): |
---|
| 13 | zope.component.eventtesting.setUp(test) |
---|
| 14 | |
---|
[5075] | 15 | checker = renormalizing.RENormalizing([ |
---|
| 16 | (re.compile('[\d]{10}'), '<10-DIGITS>'), |
---|
| 17 | ]) |
---|
| 18 | |
---|
[3521] | 19 | # Register all tests in the waeup_ng package |
---|
| 20 | test_suite = grok.testing.register_all_tests( |
---|
[5075] | 21 | 'waeup.sirp', checker=checker, usetup=setUpZope, |
---|
[4789] | 22 | layer=FunctionalLayer) |
---|
Note: See
TracBrowser for help on using the repository browser.