(self)
| 555 | self.assertEqual(f.read(), "postscript") |
| 556 | |
| 557 | def test_no_animation_sets_tracer_0(self): |
| 558 | s = turtle.TurtleScreen(cv=unittest.mock.MagicMock()) |
| 559 | |
| 560 | with s.no_animation(): |
| 561 | self.assertEqual(s.tracer(), 0) |
| 562 | |
| 563 | def test_no_animation_resets_tracer_to_old_value(self): |
| 564 | s = turtle.TurtleScreen(cv=unittest.mock.MagicMock()) |
nothing calls this directly
no test coverage detected