(self)
| 235 | nt.assert_not_in(Figure, f) |
| 236 | |
| 237 | def test_qt_gtk(self): |
| 238 | s = self.Shell() |
| 239 | gui, backend = s.enable_matplotlib('qt') |
| 240 | nt.assert_equal(gui, 'qt') |
| 241 | nt.assert_equal(s.pylab_gui_select, 'qt') |
| 242 | |
| 243 | gui, backend = s.enable_matplotlib('gtk') |
| 244 | nt.assert_equal(gui, 'qt') |
| 245 | nt.assert_equal(s.pylab_gui_select, 'qt') |
| 246 | |
| 247 | |
| 248 | def test_no_gui_backends(): |
nothing calls this directly
no test coverage detected