(self)
| 240 | sort=tk_version >= (8, 7)) |
| 241 | |
| 242 | def test_invoke(self): |
| 243 | success = [] |
| 244 | btn = ttk.Button(self.root, command=lambda: success.append(1)) |
| 245 | btn.invoke() |
| 246 | self.assertTrue(success) |
| 247 | |
| 248 | |
| 249 | @add_configure_tests(StandardTtkOptionsTests) |
nothing calls this directly
no test coverage detected