(self)
| 708 | tracer.runcall(tfunc_main) |
| 709 | |
| 710 | def test_until_with_too_large_count(self): |
| 711 | self.expect_set = [ |
| 712 | ('line', 2, 'tfunc_main'), break_in_func('tfunc_first'), |
| 713 | ('None', 2, 'tfunc_main'), ('continue', ), |
| 714 | ('line', 2, 'tfunc_first', ({1:1}, [])), ('until', (9999, )), |
| 715 | ('return', 4, 'tfunc_first'), ('quit', ), |
| 716 | ] |
| 717 | with TracerRun(self) as tracer: |
| 718 | tracer.runcall(tfunc_main) |
| 719 | |
| 720 | def test_until_in_caller_frame(self): |
| 721 | self.expect_set = [ |
nothing calls this directly
no test coverage detected