(self)
| 67 | self.assertEqual((dialog.result, dialog.destroyed), ('good', True)) |
| 68 | |
| 69 | def test_cancel(self): |
| 70 | dialog = self.Dummy_Query('does not matter') |
| 71 | self.assertEqual(dialog.cancel(), None) |
| 72 | self.assertEqual((dialog.result, dialog.destroyed), (None, True)) |
| 73 | |
| 74 | |
| 75 | class SectionNameTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected