fix test failure

This commit is contained in:
Timothee Cour
2018-12-19 12:38:50 -08:00
parent 8fbe3b3b7d
commit fc7df3283c
2 changed files with 5 additions and 2 deletions

View File

@@ -240,6 +240,7 @@ block absolutePath:
doAssert absolutePath("/a", "b/") == "/a"
block splitFile:
doAssert splitFile("") == ("", "", "")
doAssert splitFile("abc/") == ("abc", "", "")
doAssert splitFile("/") == ("/", "", "")
doAssert splitFile("./abc") == (".", "abc", "")