(rootfs: str, cwd: str, path: str)
| 22 | return p.virtual_to_host_path(path) |
| 23 | |
| 24 | def posix_to_native(rootfs: str, cwd: str, path: str) -> str: |
| 25 | p = QlOsPath(rootfs, cwd, QL_OS.LINUX) |
| 26 | |
| 27 | return p.virtual_to_host_path(path) |
| 28 | |
| 29 | |
| 30 | class TestPathUtils(unittest.TestCase): |
no test coverage detected