(self)
| 580 | |
| 581 | class TestTurtle(unittest.TestCase): |
| 582 | def setUp(self): |
| 583 | with patch_screen(): |
| 584 | self.turtle = turtle.Turtle() |
| 585 | |
| 586 | # Reset the Screen singleton to avoid reference leaks |
| 587 | self.addCleanup(setattr, turtle.Turtle, '_screen', None) |
| 588 | |
| 589 | def test_begin_end_fill(self): |
| 590 | self.assertFalse(self.turtle.filling()) |
nothing calls this directly
no test coverage detected