(base_app)
| 328 | |
| 329 | |
| 330 | def test_shell_manual_call(base_app) -> None: |
| 331 | # Verifies crash from Issue #986 doesn't happen |
| 332 | cmds = ['echo "hi"', 'echo "there"', 'echo "cmd2!"'] |
| 333 | cmd = ";".join(cmds) |
| 334 | |
| 335 | base_app.do_shell(cmd) |
| 336 | |
| 337 | cmd = "&&".join(cmds) |
| 338 | |
| 339 | base_app.do_shell(cmd) |
| 340 | |
| 341 | |
| 342 | def test_base_error(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…