(self, capfd)
| 1231 | assert err == "abc" |
| 1232 | |
| 1233 | def test_many(self, capfd): |
| 1234 | with lsof_check(): |
| 1235 | for i in range(10): |
| 1236 | cap = StdCaptureFD() |
| 1237 | cap.start_capturing() |
| 1238 | cap.stop_capturing() |
| 1239 | |
| 1240 | |
| 1241 | class TestStdCaptureFDinvalidFD: |
nothing calls this directly
no test coverage detected