(self)
| 610 | self.assertFalse(self.turtle.filling()) |
| 611 | |
| 612 | def test_fill_context_when_filling(self): |
| 613 | # The context manager works even when the turtle is already filling. |
| 614 | self.turtle.begin_fill() |
| 615 | self.assertTrue(self.turtle.filling()) |
| 616 | with self.turtle.fill(): |
| 617 | self.assertTrue(self.turtle.filling()) |
| 618 | self.assertFalse(self.turtle.filling()) |
| 619 | |
| 620 | def test_begin_end_poly(self): |
| 621 | self.assertFalse(self.turtle._creatingPoly) |
nothing calls this directly
no test coverage detected