()
| 31 | |
| 32 | |
| 33 | def test_stack(): |
| 34 | _, stdout, stderr = __call_process() |
| 35 | assert stderr == '' |
| 36 | lines = stdout.splitlines() |
| 37 | assert lines[0] == 'Callstack:' |
| 38 | assert lines[1].endswith('my_func_2()') |
| 39 | assert lines[2].endswith('my_func()') |
nothing calls this directly
no test coverage detected