()
| 21 | |
| 22 | |
| 23 | def test_normalize_path(): |
| 24 | path = "//test//test/test".replace("/", sep) |
| 25 | assert normalize_path(path) == "/test/test/test".replace("/", sep) |
| 26 | |
| 27 | path = "test///test/test".replace("/", sep) |
| 28 | assert normalize_path(path) == "test/test/test".replace("/", sep) |
| 29 | |
| 30 | |
| 31 | def test_bat_env_var_esc(): |
nothing calls this directly
no test coverage detected