change how the test is called
This commit is contained in:
parent
5e77eb23eb
commit
28b2859718
|
@ -66,7 +66,7 @@ def test_setup(testdir):
|
||||||
assert rep.failed and '42' in str(rep.longrepr)
|
assert rep.failed and '42' in str(rep.longrepr)
|
||||||
|
|
||||||
def test_unittest_style_setup_teardown(testdir):
|
def test_unittest_style_setup_teardown(testdir):
|
||||||
testdir.makepyfile("""
|
testpath = testdir.makepyfile("""
|
||||||
l = []
|
l = []
|
||||||
|
|
||||||
def setUpModule():
|
def setUpModule():
|
||||||
|
@ -81,7 +81,7 @@ def test_unittest_style_setup_teardown(testdir):
|
||||||
def test_world():
|
def test_world():
|
||||||
assert l == [1]
|
assert l == [1]
|
||||||
""")
|
""")
|
||||||
result = testdir.runpytest('-p', 'nose')
|
result = testdir.runpytest(testpath)
|
||||||
result.stdout.fnmatch_lines([
|
result.stdout.fnmatch_lines([
|
||||||
"*2 passed*",
|
"*2 passed*",
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in New Issue