(self)
| 352 | menu.destroy() |
| 353 | |
| 354 | def test_configure_width(self): |
| 355 | widget = self.create() |
| 356 | if tk_version < (8, 7) or (tk_version[:2] == (9, 0) and get_tk_patchlevel(self.root) < (9, 0, 1)): |
| 357 | conv = str |
| 358 | else: |
| 359 | conv = False |
| 360 | self.checkIntegerParam(widget, 'width', 402, -402, 0, conv=conv) |
| 361 | |
| 362 | |
| 363 | class OptionMenuTest(MenubuttonTest, unittest.TestCase): |
nothing calls this directly
no test coverage detected