示例#1
0
 def test_join_path2(self):
     assert (join_path("samples.0.", ".output") == "samples.0.output")
示例#2
0
 def test_join_path1(self):
     assert (join_path("samples.0", "output") == "samples.0.output")
示例#3
0
 def test_join_path6(self):
     assert (join_path("output", ".") == "output")
示例#4
0
 def test_join_path7(self):
     assert (join_path(".", ".") == ".")
示例#5
0
 def test_join_path5(self):
     assert (join_path(".", "output") == "output")