(base_app)
| 615 | |
| 616 | |
| 617 | def test_history_with_span_start(base_app) -> None: |
| 618 | run_cmd(base_app, "help") |
| 619 | run_cmd(base_app, "shortcuts") |
| 620 | run_cmd(base_app, "help history") |
| 621 | out, _err = run_cmd(base_app, "history 2:") |
| 622 | expected = normalize( |
| 623 | """ |
| 624 | 2 shortcuts |
| 625 | 3 help history |
| 626 | """ |
| 627 | ) |
| 628 | assert out == expected |
| 629 | verify_hi_last_result(base_app, 2) |
| 630 | |
| 631 | |
| 632 | def test_history_with_span_end(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…