Test about dialog logo.
(self)
| 43 | self.assertEqual(self.dialog.title(), 'About IDLE') |
| 44 | |
| 45 | def test_dialog_logo(self): |
| 46 | """Test about dialog logo.""" |
| 47 | path, file = os.path.split(self.dialog.icon_image['file']) |
| 48 | fn, ext = os.path.splitext(file) |
| 49 | self.assertEqual(fn, 'idle_48') |
| 50 | |
| 51 | def test_printer_buttons(self): |
| 52 | """Test buttons whose commands use printer function.""" |
nothing calls this directly
no test coverage detected