Fix test_time in parametrize doc.
The source was indented with a mixture of tabs and spaces, causing syntax errors when executed.
This commit is contained in:
parent
0ebac22bb2
commit
272f987b0c
|
@ -83,9 +83,12 @@ the argument name::
|
|||
|
||||
# content of test_time.py
|
||||
|
||||
import pytest
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
testdata = [(datetime(2001, 12, 12), datetime(2001, 12, 11), timedelta(1)),
|
||||
testdata = [
|
||||
(datetime(2001, 12, 12), datetime(2001, 12, 11), timedelta(1)),
|
||||
(datetime(2001, 12, 11), datetime(2001, 12, 12), timedelta(-1)),
|
||||
]
|
||||
|
||||
|
@ -127,21 +130,18 @@ objects, they are still using the default pytest representation::
|
|||
|
||||
$ py.test test_time.py --collect-only
|
||||
======= test session starts ========
|
||||
platform linux -- Python 3.4.2, pytest-2.8.1.dev1, py-1.4.30, pluggy-0.3.1
|
||||
platform linux -- Python 3.4.3, pytest-2.8.1.dev1, py-1.4.30, pluggy-0.3.1
|
||||
rootdir: $REGENDOC_TMPDIR, inifile:
|
||||
collected 0 items / 1 errors
|
||||
collected 6 items
|
||||
<Module 'test_time.py'>
|
||||
<Function 'test_timedistance_v0[a0-b0-expected0]'>
|
||||
<Function 'test_timedistance_v0[a1-b1-expected1]'>
|
||||
<Function 'test_timedistance_v1[forward]'>
|
||||
<Function 'test_timedistance_v1[backward]'>
|
||||
<Function 'test_timedistance_v2[20011212-20011211-expected0]'>
|
||||
<Function 'test_timedistance_v2[20011211-20011212-expected1]'>
|
||||
|
||||
======= ERRORS ========
|
||||
_______ ERROR collecting test_time.py ________
|
||||
$PYTHON_PREFIX/lib/python3.4/site-packages/_pytest/python.py:581: in _importtestmodule
|
||||
mod = self.fspath.pyimport(ensuresyspath=importmode)
|
||||
$PYTHON_PREFIX/lib/python3.4/site-packages/py/_path/local.py:650: in pyimport
|
||||
__import__(modname)
|
||||
E File "$REGENDOC_TMPDIR/test_time.py", line 5
|
||||
E (datetime(2001, 12, 11), datetime(2001, 12, 12), timedelta(-1)),
|
||||
E ^
|
||||
E SyntaxError: unexpected EOF while parsing
|
||||
======= 1 error in 0.12 seconds ========
|
||||
======= in 0.12 seconds ========
|
||||
|
||||
A quick port of "testscenarios"
|
||||
------------------------------------
|
||||
|
|
Loading…
Reference in New Issue