Like test_docstring but with string normalization off.
()
| 148 | |
| 149 | @pytest.mark.filterwarnings("ignore:invalid escape sequence.*:DeprecationWarning") |
| 150 | def test_docstring_no_string_normalization() -> None: |
| 151 | """Like test_docstring but with string normalization off.""" |
| 152 | source, expected = read_data("miscellaneous", "docstring_no_string_normalization") |
| 153 | mode = replace(DEFAULT_MODE, string_normalization=False) |
| 154 | assert_format(source, expected, mode) |
| 155 | |
| 156 | |
| 157 | def test_docstring_line_length_6() -> None: |
nothing calls this directly
no test coverage detected