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

Method test_next

Lib/test/test_bdb.py:626–635  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

624 tracer.runcall(tfunc_main)
625
626 def test_next(self):
627 self.expect_set = [
628 ('line', 2, 'tfunc_main'), ('step', ),
629 ('line', 3, 'tfunc_main'), ('next', ),
630 ('line', 4, 'tfunc_main'), ('step', ),
631 ('call', 1, 'tfunc_second'), ('step', ),
632 ('line', 2, 'tfunc_second'), ('quit', ),
633 ]
634 with TracerRun(self) as tracer:
635 tracer.runcall(tfunc_main)
636
637 def test_next_over_import(self):
638 code = """

Callers

nothing calls this directly

Calls 2

TracerRunClass · 0.85
runcallMethod · 0.45

Tested by

no test coverage detected