Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
74f5b29e
Commit
74f5b29e
authored
Jun 23, 2007
by
Stefan H. Holek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide access to test globs in doctest setUp and tearDown.
parent
d46ab020
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
3 deletions
+14
-3
lib/python/Testing/ZopeTestCase/doc/CHANGES.txt
lib/python/Testing/ZopeTestCase/doc/CHANGES.txt
+3
-2
lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
+1
-0
lib/python/Testing/ZopeTestCase/zopedoctest/testFunctionalDocTest.py
...Testing/ZopeTestCase/zopedoctest/testFunctionalDocTest.py
+5
-0
lib/python/Testing/ZopeTestCase/zopedoctest/testZopeDocTest.py
...ython/Testing/ZopeTestCase/zopedoctest/testZopeDocTest.py
+5
-1
No files found.
lib/python/Testing/ZopeTestCase/doc/CHANGES.txt
View file @
74f5b29e
0.9.10 (Zope 2.11 edition)
- Switched to Zope3 interfaces.
- Removed broken profiler support.
- Added hasPackage and installPackage functions for dealing with "products"
registered via five:registerPackage.
- Provide access to test globs in doctest setUp and tearDown.
0.9.9 (Zope 2.11 edition)
- transaction.commit(1) is deprecated in favor of transaction.savepoint(1).
...
...
@@ -18,8 +21,6 @@
publish_module(). Thanks to Andreas Zeidler.
- Fixed doctestsuite factory to copy layers from test_class to the suite.
Thanks to Whit Morris.
- Added hasPackage and installPackage functions for dealing with "products"
registered via five:registerPackage.
0.9.8 (Zope 2.8 edition)
- Renamed 'doctest' package to 'zopedoctest' because of name-shadowing
...
...
lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
View file @
74f5b29e
...
...
@@ -253,6 +253,7 @@ class ZopeSuiteFactory:
if hasattr(test_instance, '
portal
'):
test.globs['
portal
'] = test_instance.portal
test.globs['
portal_name
'] = test_instance.portal.getId()
test_instance.globs = test.globs
if kwsetUp is not None:
kwsetUp(test_instance)
...
...
lib/python/Testing/ZopeTestCase/zopedoctest/testFunctionalDocTest.py
View file @
74f5b29e
...
...
@@ -38,6 +38,9 @@ def setUp(self):
Content-Type: text/plain; charset=...
<BLANKLINE>
index
>>> foo
1
'''
self
.
folder
.
addDTMLDocument
(
'index_html'
,
file
=
'index'
)
...
...
@@ -55,6 +58,8 @@ def setUp(self):
</dtml-in>'''
self
.
folder
.
addDTMLMethod
(
'show_cookies'
,
file
=
show_cookies
)
self
.
globs
[
'foo'
]
=
1
def
test_suite
():
return
TestSuite
((
...
...
lib/python/Testing/ZopeTestCase/zopedoctest/testZopeDocTest.py
View file @
74f5b29e
...
...
@@ -12,7 +12,7 @@
##############################################################################
"""Example Zope doctest
$Id
: testZopeDocTest.py,v 1.2 2005/03/26 18:07:08 shh42 Exp
$
$Id$
"""
import
os
,
sys
...
...
@@ -29,8 +29,12 @@ def setUp(self):
>>> 'object' in folder.objectIds()
True
>>> foo
1
'''
self
.
folder
.
manage_addFolder
(
'object'
,
''
)
self
.
globs
[
'foo'
]
=
1
def
test_suite
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment