Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
* Make all tests pass.
Browse files Browse the repository at this point in the history
* Ignore generated files in SVN ops.
  • Loading branch information
strichter committed Jun 27, 2008
1 parent 1d28419 commit 470af42
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/z3c/encryptedpersistent/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,18 @@
from zope.app.testing import placelesssetup, setup


def setUp(test):
placelesssetup.setUp(test)
setup.setUpTestAsModule(test, 'README')

def tearDown(test):
tearDownTestAsModule(test)
placelesssetup.tearDown(test)

def test_suite():
return unittest.TestSuite((
DocFileSuite(
'README.txt',
setUp=placelesssetup.setUp, tearDown=placelesssetup.tearDown,
setUp=setUp, tearDown=tearDown,
optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS),
))
))

0 comments on commit 470af42

Please sign in to comment.