(self)
| 454 | self.assertEqual(f.place_info()['bordermode'], value) |
| 455 | |
| 456 | def test_place_forget(self): |
| 457 | foo = tkinter.Frame(self.root) |
| 458 | foo.place_configure(width=50, height=50) |
| 459 | self.root.update() |
| 460 | foo.place_forget() |
| 461 | self.root.update() |
| 462 | self.assertFalse(foo.winfo_ismapped()) |
| 463 | with self.assertRaises(TypeError): |
| 464 | foo.place_forget(0) |
| 465 | |
| 466 | def test_place_info(self): |
| 467 | t, f, f2 = self.create2() |
nothing calls this directly
no test coverage detected