()
| 32 | |
| 33 | @pytest.fixture |
| 34 | def error_funcs(): |
| 35 | here = dirname(__file__) |
| 36 | fn = join(here, 'integer_error.py') |
| 37 | script = ScriptHandler(fn) |
| 38 | script.parse() |
| 39 | funcs = script.tranquilized_functions |
| 40 | |
| 41 | return funcs |
| 42 | |
| 43 | @pytest.fixture |
| 44 | def protected_funcs(): |
nothing calls this directly
no test coverage detected