()
| 368 | |
| 369 | |
| 370 | def test_get_extended_length_path_str() -> None: |
| 371 | assert get_extended_length_path_str(r"c:\foo") == r"\\?\c:\foo" |
| 372 | assert get_extended_length_path_str(r"\\share\foo") == r"\\?\UNC\share\foo" |
| 373 | assert get_extended_length_path_str(r"\\?\UNC\share\foo") == r"\\?\UNC\share\foo" |
| 374 | assert get_extended_length_path_str(r"\\?\c:\foo") == r"\\?\c:\foo" |
| 375 | |
| 376 | |
| 377 | def test_suppress_error_removing_lock(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected