(self)
| 65 | self.assertIn("OS.getpid()", self.mock.eval_calls[-1]) |
| 66 | |
| 67 | def test_getpid_failure(self): |
| 68 | self.mock.set_eval_response(False, None, "error") |
| 69 | result = self.os.getpid() |
| 70 | self.assertIsNone(result) |
| 71 | |
| 72 | def test_kill(self): |
| 73 | self.mock.set_eval_response(True, "0\n") |
nothing calls this directly
no test coverage detected