Test about dialog title
(self)
| 104 | del cls.root |
| 105 | |
| 106 | def test_dialog_title(self): |
| 107 | """Test about dialog title""" |
| 108 | self.assertEqual(self.dialog.title(), |
| 109 | f'About IDLE {python_version()}' |
| 110 | f' ({help_about.bits} bit)') |
| 111 | |
| 112 | |
| 113 | class CloseTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected