(func)
| 491 | self.check_run_submodule('relative', '-p') |
| 492 | |
| 493 | def with_fake_debugger(func): |
| 494 | @functools.wraps(func) |
| 495 | def wrapper(*args, **kwds): |
| 496 | with patch.object(debugger.Pdb, 'run', staticmethod(eval)): |
| 497 | return func(*args, **kwds) |
| 498 | return wrapper |
| 499 | |
| 500 | @with_fake_debugger |
| 501 | def test_debug_run_submodule_with_absolute_import(self): |
nothing calls this directly
no outgoing calls
no test coverage detected