(self)
| 219 | check('right', '20x40+280+80', '280x200+0+0') |
| 220 | |
| 221 | def test_pack_forget(self): |
| 222 | pack, a, b, c, d = self.create2() |
| 223 | a.pack_configure() |
| 224 | b.pack_configure() |
| 225 | c.pack_configure() |
| 226 | self.assertEqual(pack.pack_content(), [a, b, c]) |
| 227 | b.pack_forget() |
| 228 | self.assertEqual(pack.pack_content(), [a, c]) |
| 229 | b.pack_forget() |
| 230 | self.assertEqual(pack.pack_content(), [a, c]) |
| 231 | d.pack_forget() |
| 232 | |
| 233 | def test_pack_info(self): |
| 234 | pack, a, b, c, d = self.create2() |
nothing calls this directly
no test coverage detected