コード例 #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")