(self)
| 60 | self.assertEqual(self.dialog.showerror.message, '') |
| 61 | |
| 62 | def test_keys_no_ending(self): |
| 63 | self.assertFalse(self.dialog.keys_ok('<Control-Shift')) |
| 64 | self.assertIn('Missing the final', self.dialog.showerror.message) |
| 65 | |
| 66 | def test_keys_no_modifier_bad(self): |
| 67 | self.dialog.list_keys_final.get.result = 'A' |
nothing calls this directly
no test coverage detected