(self)
| 274 | self.assertEqual(pack.winfo_reqheight(), 40) |
| 275 | |
| 276 | def test_pack_content(self): |
| 277 | pack, a, b, c, d = self.create2() |
| 278 | self.assertEqual(pack.pack_content(), []) |
| 279 | a.pack_configure() |
| 280 | self.assertEqual(pack.pack_content(), [a]) |
| 281 | b.pack_configure() |
| 282 | self.assertEqual(pack.pack_content(), [a, b]) |
| 283 | |
| 284 | def test_pack_slaves(self): |
| 285 | pack, a, b, c, d = self.create2() |
nothing calls this directly
no test coverage detected