(self)
| 150 | self.assertEqual(result, "/dev/null") |
| 151 | |
| 152 | def test_fdpath_nil(self): |
| 153 | self.mock.set_eval_response(True, "__NIL__\n") |
| 154 | result = self.file.fdpath(999) |
| 155 | self.assertIsNone(result) |
| 156 | |
| 157 | def test_write_success(self): |
| 158 | self.mock.set_eval_response(True, "true\n") |
nothing calls this directly
no test coverage detected