(anchor, geom)
| 49 | def test_pack_configure_anchor(self): |
| 50 | pack, a, b, c, d = self.create2() |
| 51 | def check(anchor, geom): |
| 52 | a.pack_configure(side='top', ipadx=5, padx=10, ipady=15, pady=20, |
| 53 | expand=True, anchor=anchor) |
| 54 | self.root.update() |
| 55 | self.assertEqual(a.winfo_geometry(), geom) |
| 56 | check('n', '30x70+135+20') |
| 57 | check('ne', '30x70+260+20') |
| 58 | check('e', '30x70+260+65') |
nothing calls this directly
no test coverage detected