(self, path: str)
| 123 | self.path = path |
| 124 | |
| 125 | def joinpath(self, path: str) -> 'FakeResourceTree': |
| 126 | return FakeResourceTree(self.files, path) |
| 127 | |
| 128 | def open(self, mode: str) -> StringIO: |
| 129 | assert self.path is not None |
no test coverage detected