Skip to content

Commit

Permalink
- Using stdlib's doctest module, instead of ``zope.testing.doctes…
Browse files Browse the repository at this point in the history
…t``.

- fixed dependency in zope.app.testing version
  • Loading branch information
Michael Howitz committed Sep 17, 2010
1 parent 46f246d commit 7f08e0a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Expand Up @@ -2,6 +2,12 @@
CHANGES
=======

3.8.2 (unreleased)
------------------

- Using stdlib's ``doctest`` module, instead of ``zope.testing.doctest``.


3.8.1 (2010-04-19)
------------------

Expand Down
4 changes: 4 additions & 0 deletions buildout.cfg
@@ -1,6 +1,10 @@
[buildout]
develop = .
parts = test interpreter
versions = versions

[versions]
zope.app.testing = 3.7.8

[test]
recipe = zc.recipe.testrunner
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -77,7 +77,7 @@
'zope.traversing',
'zope.app.appsetup',
'zope.app.publication',
'zope.app.testing',
'zope.app.testing < 3.8',
],
'zope-functional-testing': [
'zope.app.testing',
Expand Down
2 changes: 1 addition & 1 deletion src/zope/testbrowser/tests.py
Expand Up @@ -17,8 +17,8 @@
"""

from zope.app.testing.functional import FunctionalDocFileSuite
from zope.testing import doctest
import cStringIO
import doctest
import httplib
import mechanize
import os
Expand Down

0 comments on commit 7f08e0a

Please sign in to comment.