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