[Zope3-checkins]
SVN: zope.testing/branches/tim-pyc/src/zope/testing/testrunner
Typo repair, trimmed trailing whitespace.
Tim Peters
tim.one at comcast.net
Wed Sep 28 14:49:20 EDT 2005
Log message for revision 38668:
Typo repair, trimmed trailing whitespace.
Changed:
U zope.testing/branches/tim-pyc/src/zope/testing/testrunner-edge-cases.txt
U zope.testing/branches/tim-pyc/src/zope/testing/testrunner.txt
-=-
Modified: zope.testing/branches/tim-pyc/src/zope/testing/testrunner-edge-cases.txt
===================================================================
--- zope.testing/branches/tim-pyc/src/zope/testing/testrunner-edge-cases.txt 2005-09-28 17:06:12 UTC (rev 38667)
+++ zope.testing/branches/tim-pyc/src/zope/testing/testrunner-edge-cases.txt 2005-09-28 18:49:20 UTC (rev 38668)
@@ -144,7 +144,7 @@
<BLANKLINE>
Error in test test_post_mortem2 (sample3.sampletests_d.TestSomething)
Traceback (most recent call last):
- File "testrunner-ex/sample3/sampletests_d.py",
+ File "testrunner-ex/sample3/sampletests_d.py",
line 37, in test_post_mortem2
g()
File "testrunner-ex/sample3/sampletests_d.py", line 46, in g
@@ -184,7 +184,7 @@
exc_info)
File "zope/testing/doctest.py", line 1737, in report_unexpected_exception
raise UnexpectedException(test, example, exc_info)
- UnexpectedException:
+ UnexpectedException:
from testrunner-ex/sample3/sampletests_d.py:61 (2 examples)>
<BLANKLINE>
exceptions.ValueError:
@@ -310,7 +310,7 @@
<BLANKLINE>
Error in test post_mortem_failure2 (sample3.sampletests_d)
<BLANKLINE>
- File "testrunner-ex/sample3/sampletests_d.py",
+ File "testrunner-ex/sample3/sampletests_d.py",
line 81, in sample3.sampletests_d.post_mortem_failure2
<BLANKLINE>
x
@@ -366,7 +366,7 @@
(Pdb) c
True
-Post-mortem debugging with tripple verbosity
+Post-mortem debugging with triple verbosity
>>> sys.argv = 'test --layer samplelayers.Layer1$ -vvv -D'.split()
>>> testrunner.run(defaults)
Modified: zope.testing/branches/tim-pyc/src/zope/testing/testrunner.txt
===================================================================
--- zope.testing/branches/tim-pyc/src/zope/testing/testrunner.txt 2005-09-28 17:06:12 UTC (rev 38667)
+++ zope.testing/branches/tim-pyc/src/zope/testing/testrunner.txt 2005-09-28 18:49:20 UTC (rev 38668)
@@ -239,8 +239,8 @@
In most of the examples here, we set up `sys.argv`. In normal usage,
the testrunner just uses `sys.argv`. It is possible to pass athiments
-explicitly.
-
+explicitly.
+
>>> testrunner.run(defaults, 'test --layer 111'.split())
Running samplelayers.Layer111 tests:
Set up samplelayers.Layerx in N.NNN seconds.
@@ -1395,7 +1395,7 @@
File "testrunner-ex/sample2/sampletests_1.py", line 17, in eek
<BLANKLINE>
----------------------------------------------------------------------
- File "testrunner-ex/sample2/sampletests_1.py", line 19,
+ File "testrunner-ex/sample2/sampletests_1.py", line 19,
in sample2.sampletests_1.eek
Failed example:
x = y
@@ -1407,7 +1407,7 @@
x = y
NameError: name 'y' is not defined
----------------------------------------------------------------------
- File "testrunner-ex/sample2/sampletests_1.py", line 21,
+ File "testrunner-ex/sample2/sampletests_1.py", line 21,
in sample2.sampletests_1.eek
Failed example:
x
@@ -1419,7 +1419,7 @@
x
NameError: name 'x' is not defined
----------------------------------------------------------------------
- File "testrunner-ex/sample2/sampletests_1.py", line 24,
+ File "testrunner-ex/sample2/sampletests_1.py", line 24,
in sample2.sampletests_1.eek
Failed example:
z = x + 1
@@ -1449,7 +1449,7 @@
File "testrunner-ex/sample2/sampletests_1.py", line 17, in eek
<BLANKLINE>
----------------------------------------------------------------------
- File "testrunner-ex/sample2/sampletests_1.py", line 19,
+ File "testrunner-ex/sample2/sampletests_1.py", line 19,
in sample2.sampletests_1.eek
Failed example:
x = y
@@ -1592,7 +1592,7 @@
break in the pdb.set_trace function. It was necessary to use 'next'
or 'up' to get to the application code that called pdb.set_trace. In
Python 2.4, pdb.set_trace causes pdb to stop right after the call to
-pdb.set_trace.
+pdb.set_trace.
You can also do post-mortem debugging, using the --post-mortem (-D)
option:
@@ -1608,7 +1608,7 @@
<BLANKLINE>
Error in test test_post_mortem1 (sample3.sampletests_d.TestSomething)
Traceback (most recent call last):
- File "testrunner-ex/sample3/sampletests_d.py",
+ File "testrunner-ex/sample3/sampletests_d.py",
line 34, in test_post_mortem1
raise ValueError
ValueError
More information about the Zope3-Checkins
mailing list