(base_app)
| 587 | |
| 588 | |
| 589 | def test_history_with_integer_argument(base_app) -> None: |
| 590 | run_cmd(base_app, "help") |
| 591 | run_cmd(base_app, "shortcuts") |
| 592 | out, _err = run_cmd(base_app, "history 1") |
| 593 | expected = normalize( |
| 594 | """ |
| 595 | 1 help |
| 596 | """ |
| 597 | ) |
| 598 | assert out == expected |
| 599 | verify_hi_last_result(base_app, 1) |
| 600 | |
| 601 | |
| 602 | def test_history_with_integer_span(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…