()
| 141 | pt.select_figure_formats(ip, ['retina', 'pdf', 'bar', 'bad']) |
| 142 | |
| 143 | def test_import_pylab(): |
| 144 | ns = {} |
| 145 | pt.import_pylab(ns, import_all=False) |
| 146 | nt.assert_true('plt' in ns) |
| 147 | nt.assert_equal(ns['np'], np) |
| 148 | |
| 149 | class TestPylabSwitch(object): |
| 150 | class Shell(InteractiveShell): |
nothing calls this directly
no outgoing calls
no test coverage detected