(executor)
| 314 | |
| 315 | @dbtest |
| 316 | def test_cd_command_unbalanced(executor): |
| 317 | results = run(executor, "system cd 'one") |
| 318 | assert_result_equal( |
| 319 | results, |
| 320 | status='Cannot parse system command: No closing quotation', |
| 321 | status_plain='Cannot parse system command: No closing quotation', |
| 322 | ) |
| 323 | |
| 324 | |
| 325 | @dbtest |
nothing calls this directly
no test coverage detected