()
| 47 | |
| 48 | |
| 49 | def test_commonpath_invalid(): |
| 50 | # type: () -> None |
| 51 | |
| 52 | with pytest.raises(ValueError): |
| 53 | commonpath([]) |
| 54 | |
| 55 | with pytest.raises(ValueError): |
| 56 | commonpath(["a", "/a"]) |
| 57 | |
| 58 | |
| 59 | def test_commonpath_single(): |
nothing calls this directly
no test coverage detected