(base_app)
| 538 | |
| 539 | |
| 540 | def test_history_with_string_argument(base_app) -> None: |
| 541 | run_cmd(base_app, "help") |
| 542 | run_cmd(base_app, "shortcuts") |
| 543 | run_cmd(base_app, "help history") |
| 544 | out, _err = run_cmd(base_app, "history help") |
| 545 | expected = normalize( |
| 546 | """ |
| 547 | 1 help |
| 548 | 3 help history |
| 549 | """ |
| 550 | ) |
| 551 | assert out == expected |
| 552 | verify_hi_last_result(base_app, 2) |
| 553 | |
| 554 | |
| 555 | def test_history_expanded_with_string_argument(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…