source: main/waeup.custom/trunk/src/waeup/custom/testing.py @ 6948

Last change on this file since 6948 was 6903, checked in by Henrik Bettermann, 13 years ago

Let's grok w.c. instead of w.s for testing.

  • Property svn:keywords set to Id
File size: 346 bytes
Line 
1"""Testing support for :mod:`waeup.custom`.
2"""
3import os.path
4import waeup.custom
5from zope.app.testing.functional import ZCMLLayer
6
7ftesting_zcml = os.path.join(
8    os.path.dirname(waeup.custom.__file__), 'ftesting.zcml')
9FunctionalLayer = ZCMLLayer(ftesting_zcml, __name__, 'FunctionalLayer',
10                            allow_teardown=True)
Note: See TracBrowser for help on using the repository browser.