(self)
| 618 | self.assertFalse(self.turtle.filling()) |
| 619 | |
| 620 | def test_begin_end_poly(self): |
| 621 | self.assertFalse(self.turtle._creatingPoly) |
| 622 | self.turtle.begin_poly() |
| 623 | self.assertTrue(self.turtle._creatingPoly) |
| 624 | self.turtle.end_poly() |
| 625 | self.assertFalse(self.turtle._creatingPoly) |
| 626 | |
| 627 | def test_poly(self): |
| 628 | # The context manager behaves like begin_poly and end_poly. |
nothing calls this directly
no test coverage detected