(self)
| 296 | self.nav = turtle.TNavigator() |
| 297 | |
| 298 | def test_goto(self): |
| 299 | self.nav.goto(100, -100) |
| 300 | self.assertAlmostEqual(self.nav.xcor(), 100) |
| 301 | self.assertAlmostEqual(self.nav.ycor(), -100) |
| 302 | |
| 303 | def test_teleport(self): |
| 304 | self.nav.teleport(20, -30, fill_gap=True) |
nothing calls this directly
no test coverage detected