(self)
| 1187 | assert capture_result.err == "world" |
| 1188 | |
| 1189 | def test_capturing_readouterr_unicode(self) -> None: |
| 1190 | with self.getcapture() as cap: |
| 1191 | print("hxąć") |
| 1192 | out, _err = cap.readouterr() |
| 1193 | assert out == "hxąć\n" |
| 1194 | |
| 1195 | def test_reset_twice_error(self) -> None: |
| 1196 | with self.getcapture() as cap: |
nothing calls this directly
no test coverage detected