()
| 113 | |
| 114 | |
| 115 | def test_magic_error_status(): |
| 116 | def fail(shell): |
| 117 | 1 / 0 |
| 118 | |
| 119 | _ip.register_magic_function(fail) |
| 120 | result = _ip.run_cell("%fail") |
| 121 | assert isinstance(result.error_in_exec, ZeroDivisionError) |
| 122 | |
| 123 | |
| 124 | def test_config(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…