Tests for turning off the string processing logic.
()
| 174 | |
| 175 | |
| 176 | def test_long_strings_flag_disabled() -> None: |
| 177 | """Tests for turning off the string processing logic.""" |
| 178 | source, expected = read_data("miscellaneous", "long_strings_flag_disabled") |
| 179 | mode = replace(DEFAULT_MODE, experimental_string_processing=False) |
| 180 | assert_format(source, expected, mode) |
| 181 | |
| 182 | |
| 183 | def test_stub() -> None: |
nothing calls this directly
no test coverage detected