(self)
| 127 | self.assertIsNone(result) |
| 128 | |
| 129 | def test_exists_true(self): |
| 130 | self.mock.set_eval_response(True, "true\n") |
| 131 | self.assertTrue(self.file.exists("/etc/hosts")) |
| 132 | |
| 133 | def test_exists_false(self): |
| 134 | self.mock.set_eval_response(True, "false\n") |
nothing calls this directly
no test coverage detected