remove debugging left-overs

--HG--
branch : doctest-fixtures
This commit is contained in:
Andreas Zeidler 2013-03-21 01:03:59 +01:00
parent fa9bd8443f
commit da3b42ce46
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ class TestDoctests:
"*test_txtfile_failing.txt:2: DocTestFailure" "*test_txtfile_failing.txt:2: DocTestFailure"
]) ])
def test_txtfile_with_fixtures(self, testdir, tmpdir): def test_txtfile_with_fixtures(self, testdir):
p = testdir.maketxtfile(""" p = testdir.maketxtfile("""
>>> dir = get_fixture('tmpdir') >>> dir = get_fixture('tmpdir')
>>> type(dir).__name__ >>> type(dir).__name__
@ -134,7 +134,7 @@ class TestDoctests:
reprec = testdir.inline_run(p, ) reprec = testdir.inline_run(p, )
reprec.assertoutcome(passed=1) reprec.assertoutcome(passed=1)
def test_doctestmodule_with_fixtures(self, testdir, tmpdir): def test_doctestmodule_with_fixtures(self, testdir):
p = testdir.makepyfile(""" p = testdir.makepyfile("""
''' '''
>>> dir = get_fixture('tmpdir') >>> dir = get_fixture('tmpdir')