()
| 19 | |
| 20 | @pytest.fixture |
| 21 | def parser(): |
| 22 | return StatementParser( |
| 23 | terminators=[";", "&"], |
| 24 | multiline_commands=["multiline"], |
| 25 | aliases={ |
| 26 | "helpalias": "help", |
| 27 | "42": "theanswer", |
| 28 | "l": "!ls -al", |
| 29 | "anothermultiline": "multiline", |
| 30 | "fake": "run_pyscript", |
| 31 | }, |
| 32 | shortcuts={"?": "help", "!": "shell"}, |
| 33 | ) |
| 34 | |
| 35 | |
| 36 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…