(self)
| 1526 | m1.destroy() |
| 1527 | |
| 1528 | def test_entryconfigure_label(self): |
| 1529 | m1 = self.create() |
| 1530 | m1.add_command(label='test') |
| 1531 | self.assertEqual(m1.entrycget(1, 'label'), 'test') |
| 1532 | m1.entryconfigure(1, label='changed') |
| 1533 | self.assertEqual(m1.entrycget(1, 'label'), 'changed') |
| 1534 | |
| 1535 | def test_entryconfigure_variable(self): |
| 1536 | m1 = self.create() |
nothing calls this directly
no test coverage detected