(executor)
| 281 | |
| 282 | @dbtest |
| 283 | def test_cd_command_without_a_folder_name(executor): |
| 284 | results = run(executor, "system cd") |
| 285 | assert_result_equal( |
| 286 | results, status="Exactly one directory name must be provided.", status_plain="Exactly one directory name must be provided." |
| 287 | ) |
| 288 | |
| 289 | |
| 290 | @dbtest |
nothing calls this directly
no test coverage detected