(self)
| 101 | self.assertEqual(widget2['screen'], display) |
| 102 | |
| 103 | def test_configure_use(self): |
| 104 | widget = self.create() |
| 105 | self.assertEqual(widget['use'], '') |
| 106 | parent = self.create(container=True) |
| 107 | wid = hex(parent.winfo_id()) |
| 108 | with self.subTest(wid=wid): |
| 109 | widget2 = self.create(use=wid) |
| 110 | self.assertEqual(widget2['use'], wid) |
| 111 | |
| 112 | |
| 113 | @add_configure_tests(StandardOptionsTests) |
nothing calls this directly
no test coverage detected