()
| 132 | nt.assert_not_in(Figure, f) |
| 133 | |
| 134 | def test_select_figure_formats_bad(): |
| 135 | ip = get_ipython() |
| 136 | with nt.assert_raises(ValueError): |
| 137 | pt.select_figure_formats(ip, 'foo') |
| 138 | with nt.assert_raises(ValueError): |
| 139 | pt.select_figure_formats(ip, {'png', 'foo'}) |
| 140 | with nt.assert_raises(ValueError): |
| 141 | pt.select_figure_formats(ip, ['retina', 'pdf', 'bar', 'bad']) |
| 142 | |
| 143 | def test_import_pylab(): |
| 144 | ns = {} |
nothing calls this directly
no test coverage detected