(self, capfd)
| 1311 | assert err == "abc" |
| 1312 | |
| 1313 | def test_many(self, capfd): |
| 1314 | with lsof_check(): |
| 1315 | for i in range(10): |
| 1316 | cap = StdCaptureFD() |
| 1317 | cap.start_capturing() |
| 1318 | cap.stop_capturing() |
| 1319 | |
| 1320 | |
| 1321 | class TestStdCaptureFDinvalidFD: |
nothing calls this directly
no test coverage detected