(self, ref)
| 160 | return False |
| 161 | |
| 162 | def _ref_rm(self, ref): |
| 163 | ref_path = os.path.join(self.path, ref) |
| 164 | if os.path.exists(ref_path): |
| 165 | os.remove(ref_path) |
| 166 | |
| 167 | def _ref_create(self, ref, value): |
| 168 | ref_path = os.path.join(self.path, ref) |
no outgoing calls
no test coverage detected