(self, path: str)
| 26 | return any(f.startswith(path) for f in self.files) |
| 27 | |
| 28 | def listdir(self, path: str) -> list[str]: |
| 29 | if not path.endswith(os.sep): |
| 30 | path += os.sep |
| 31 | return list({f[len(path) :].split(os.sep)[0] for f in self.files if f.startswith(path)}) |
| 32 | |
| 33 | def init_under_package_root(self, path: str) -> bool: |
| 34 | return False |
no test coverage detected