(base_app)
| 630 | |
| 631 | |
| 632 | def test_history_with_span_end(base_app) -> None: |
| 633 | run_cmd(base_app, "help") |
| 634 | run_cmd(base_app, "shortcuts") |
| 635 | run_cmd(base_app, "help history") |
| 636 | out, _err = run_cmd(base_app, "history :2") |
| 637 | expected = normalize( |
| 638 | """ |
| 639 | 1 help |
| 640 | 2 shortcuts |
| 641 | """ |
| 642 | ) |
| 643 | assert out == expected |
| 644 | verify_hi_last_result(base_app, 2) |
| 645 | |
| 646 | |
| 647 | def test_history_with_span_index_error(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…