Check that we can still call the decorated functions. >>> doctest_bad(3,y=4) x: 3 y: 4 k: {}
()
| 71 | |
| 72 | |
| 73 | def call_doctest_bad(): |
| 74 | """Check that we can still call the decorated functions. |
| 75 | |
| 76 | >>> doctest_bad(3,y=4) |
| 77 | x: 3 |
| 78 | y: 4 |
| 79 | k: {} |
| 80 | """ |
| 81 | pass |
| 82 | |
| 83 | |
| 84 | def test_skip_dt_decorator(): |
nothing calls this directly
no outgoing calls
no test coverage detected