()
| 21 | |
| 22 | |
| 23 | def test_set_rejects_missing_argument() -> None: |
| 24 | command = DelimiterCommand() |
| 25 | |
| 26 | result = command.set('') |
| 27 | |
| 28 | assert result[0].status == 'Missing required argument, delimiter' |
| 29 | assert command.current == ';' |
| 30 | |
| 31 | |
| 32 | def test_set_rejects_delimiter_keyword_case_insensitively() -> None: |
nothing calls this directly
no test coverage detected