(self)
| 148 | |
| 149 | @patch("black.dump_to_file", dump_to_stderr) |
| 150 | def test_one_empty_line(self) -> None: |
| 151 | for nl in ["\n", "\r\n"]: |
| 152 | source = expected = nl |
| 153 | assert_format(source, expected) |
| 154 | |
| 155 | def test_one_empty_line_ff(self) -> None: |
| 156 | for nl in ["\n", "\r\n"]: |
nothing calls this directly
no test coverage detected