(capture)
| 9 | |
| 10 | |
| 11 | def test_evals(capture): |
| 12 | with capture: |
| 13 | assert m.test_eval_statements() |
| 14 | assert capture == "Hello World!" |
| 15 | |
| 16 | assert m.test_eval() |
| 17 | assert m.test_eval_single_statement() |
| 18 | |
| 19 | assert m.test_eval_failure() |
| 20 | |
| 21 | |
| 22 | @pytest.mark.xfail("env.PYPY or env.GRAALPY", raises=RuntimeError) |
nothing calls this directly
no outgoing calls
no test coverage detected