(self)
| 205 | return tkinter.Button(self.root, **kwargs) |
| 206 | |
| 207 | def test_configure_default(self): |
| 208 | widget = self.create() |
| 209 | self.checkEnumParam(widget, 'default', 'active', 'disabled', 'normal') |
| 210 | |
| 211 | |
| 212 | @add_configure_tests(StandardOptionsTests) |
nothing calls this directly
no test coverage detected