(self, capfd, nl)
| 528 | |
| 529 | @pytest.mark.parametrize("nl", ("\n", "\r\n", "\r")) |
| 530 | def test_cafd_preserves_newlines(self, capfd, nl) -> None: |
| 531 | print("test", end=nl) |
| 532 | out, err = capfd.readouterr() |
| 533 | assert out.endswith(nl) |
| 534 | |
| 535 | def test_capfdbinary(self, pytester: Pytester) -> None: |
| 536 | reprec = pytester.inline_runsource( |
nothing calls this directly
no test coverage detected