()
| 140 | |
| 141 | @dec.skip_without('matplotlib') |
| 142 | def test_set_matplotlib_close(): |
| 143 | cfg = _get_inline_config() |
| 144 | cfg.close_figures = False |
| 145 | display.set_matplotlib_close() |
| 146 | assert cfg.close_figures |
| 147 | display.set_matplotlib_close(False) |
| 148 | assert not cfg.close_figures |
| 149 | |
| 150 | _fmt_mime_map = { |
| 151 | 'png': 'image/png', |
nothing calls this directly
no test coverage detected