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

Method test_until

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

Source from the content-addressed store, hash-verified

697 tracer.runcall(tfunc_main)
698
699 def test_until(self):
700 self.expect_set = [
701 ('line', 2, 'tfunc_main'), ('step', ),
702 ('line', 3, 'tfunc_main'), ('step', ),
703 ('call', 1, 'tfunc_first'), ('step', ),
704 ('line', 2, 'tfunc_first'), ('until', (4, )),
705 ('line', 4, 'tfunc_first'), ('quit', ),
706 ]
707 with TracerRun(self) as tracer:
708 tracer.runcall(tfunc_main)
709
710 def test_until_with_too_large_count(self):
711 self.expect_set = [

Callers

nothing calls this directly

Calls 2

TracerRunClass · 0.85
runcallMethod · 0.45

Tested by

no test coverage detected