()
| 57 | |
| 58 | |
| 59 | def test_commonpath_single(): |
| 60 | # type: () -> None |
| 61 | |
| 62 | assert "" == commonpath([""]) |
| 63 | assert "/" == commonpath(["/"]) |
| 64 | assert "a" == commonpath(["a"]) |
| 65 | assert "/a" == commonpath(["/a"]) |
| 66 | |
| 67 | |
| 68 | def test_commonpath_common(): |
nothing calls this directly
no test coverage detected