(self)
| 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 = [ |