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