MCPcopy Index your code
hub / github.com/python/cpython / test_pendown_and_penup

Method test_pendown_and_penup

Lib/test/test_turtle.py:464–472  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

462class TestTPen(unittest.TestCase):
463
464 def test_pendown_and_penup(self):
465
466 tpen = turtle.TPen()
467
468 self.assertTrue(tpen.isdown())
469 tpen.penup()
470 self.assertFalse(tpen.isdown())
471 tpen.pendown()
472 self.assertTrue(tpen.isdown())
473
474 def test_showturtle_hideturtle_and_isvisible(self):
475

Callers

nothing calls this directly

Calls 5

isdownMethod · 0.95
penupMethod · 0.95
pendownMethod · 0.95
assertTrueMethod · 0.80
assertFalseMethod · 0.80

Tested by

no test coverage detected