(self, name)
| 111 | self.dvc.close() |
| 112 | |
| 113 | def _require(self, name): |
| 114 | if not hasattr(self, name): |
| 115 | raise TypeError( |
| 116 | f"Can't use {name} for this temporary dir. " |
| 117 | f'Did you forget to use "{name}" fixture?' |
| 118 | ) |
| 119 | |
| 120 | # Bootstrapping methods |
| 121 | def gen(self, struct, text=""): |
no outgoing calls
no test coverage detected