(self)
| 221 | assert sanitize_tsv("hello world") == "hello world" |
| 222 | |
| 223 | def test_empty_string(self) -> None: |
| 224 | assert sanitize_tsv("") == "" |
| 225 | |
| 226 | def test_multiple_tabs_and_newlines(self) -> None: |
| 227 | assert sanitize_tsv("a\tb\tc\nd\re") == "a b c d e" |
nothing calls this directly
no test coverage detected