(base_app)
| 798 | |
| 799 | |
| 800 | def test_history_script(base_app) -> None: |
| 801 | cmds = ["alias create s shortcuts", "s"] |
| 802 | for cmd in cmds: |
| 803 | run_cmd(base_app, cmd) |
| 804 | out, _err = run_cmd(base_app, "history -s") |
| 805 | assert out == cmds |
| 806 | verify_hi_last_result(base_app, 2) |
| 807 | |
| 808 | |
| 809 | def test_history_expanded_with_invalid_options(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…