pdb: add test for --trace with --pdbcls

Ensures that https://github.com/pytest-dev/pytest/issues/4111 is fixed,
which happened in 92a2884b as a byproduct.
This commit is contained in:
Daniel Hahler 2019-04-08 02:00:28 +02:00
parent ff5e98c654
commit 4fb7a91a5e
1 changed files with 13 additions and 2 deletions

View File

@ -1148,7 +1148,11 @@ def test_pdbcls_via_local_module(testdir):
class Wrapped:
class MyPdb:
def set_trace(self, *args):
print("mypdb_called", args)
print("settrace_called", args)
def runcall(self, *args, **kwds):
print("runcall_called", args, kwds)
assert "func" in kwds
""",
)
result = testdir.runpytest(
@ -1165,4 +1169,11 @@ def test_pdbcls_via_local_module(testdir):
str(p1), "--pdbcls=mypdb:Wrapped.MyPdb", syspathinsert=True
)
assert result.ret == 0
result.stdout.fnmatch_lines(["*mypdb_called*", "* 1 passed in *"])
result.stdout.fnmatch_lines(["*settrace_called*", "* 1 passed in *"])
# Ensure that it also works with --trace.
result = testdir.runpytest(
str(p1), "--pdbcls=mypdb:Wrapped.MyPdb", "--trace", syspathinsert=True
)
assert result.ret == 0
result.stdout.fnmatch_lines(["*runcall_called*", "* 1 passed in *"])