(self)
| 69 | file=self.testfile) |
| 70 | |
| 71 | def test_bug_100814(self): |
| 72 | # gh-100814: Passing a callable option value causes AttributeError. |
| 73 | with self.assertRaises(tkinter.TclError): |
| 74 | self.image_class('::img::test', master=self.root, spam=print) |
| 75 | image = self.image_class('::img::test', master=self.root) |
| 76 | with self.assertRaises(tkinter.TclError): |
| 77 | image.configure(spam=print) |
| 78 | |
| 79 | def test_iterable_protocol(self): |
| 80 | image = self.create() |
nothing calls this directly
no test coverage detected