Returns the current contents of the named file.
(self, name: str)
| 139 | self._files[name] = patch_fn(self._files[name]) |
| 140 | |
| 141 | def get(self, name: str) -> bytes: |
| 142 | """Returns the current contents of the named file.""" |
| 143 | return self._files[name] |
| 144 | |
| 145 | def write_to(self, out_dir: str) -> None: |
| 146 | """Writes the files to the specified directory. File names are based on |
no outgoing calls
no test coverage detected