(self)
| 641 | self.assertFalse(self.turtle._creatingPoly) |
| 642 | |
| 643 | def test_poly_context_when_creating_poly(self): |
| 644 | # The context manager works when the turtle is already creating poly. |
| 645 | self.turtle.begin_poly() |
| 646 | self.assertTrue(self.turtle._creatingPoly) |
| 647 | with self.turtle.poly(): |
| 648 | self.assertTrue(self.turtle._creatingPoly) |
| 649 | self.assertFalse(self.turtle._creatingPoly) |
| 650 | |
| 651 | def test_dot_signature(self): |
| 652 | self.turtle.dot() |
nothing calls this directly
no test coverage detected