(self, capfd, nl)
| 583 | |
| 584 | @pytest.mark.parametrize("nl", ("\n", "\r\n", "\r")) |
| 585 | def test_cafd_preserves_newlines(self, capfd, nl) -> None: |
| 586 | print("test", end=nl) |
| 587 | out, _err = capfd.readouterr() |
| 588 | assert out.endswith(nl) |
| 589 | |
| 590 | def test_capfdbinary(self, pytester: Pytester) -> None: |
| 591 | reprec = pytester.inline_runsource( |
nothing calls this directly
no test coverage detected