()
| 60 | |
| 61 | |
| 62 | def test_popen_worker_reuses(): |
| 63 | proc = PopenWorker(maximum_uses=None) |
| 64 | |
| 65 | proc.send(os.getpid) |
| 66 | initial_pid = proc.recv() |
| 67 | |
| 68 | proc.send(os.getpid) |
| 69 | assert proc.recv() == initial_pid |
| 70 | |
| 71 | |
| 72 | def test_popen_worker_recycles(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…