Beispiel #1
0
 def test_combine_path_dot_notation(self):
     base_path = "/tmp"
     relative_ref = "./includes/test.tex"
     result = "/tmp/includes/test.tex"
     self.assertEqual(flatex.combine_path(base_path, relative_ref), result)
Beispiel #2
0
 def test_combine_path_dot_notation(self):
     base_path = "/tmp"
     relative_ref = "./includes/test.tex"
     result = "/tmp/includes/test.tex"
     self.assertEqual(flatex.combine_path(base_path, relative_ref), result)
Beispiel #3
0
 def test_combine_path(self):
     base_path = "/tmp"
     relative_ref = "test.tex"
     result = "/tmp/test.tex"
     self.assertEqual(flatex.combine_path(base_path, relative_ref), result)
Beispiel #4
0
 def test_combine_path(self):
     base_path = "/tmp"
     relative_ref = "test.tex"
     result = "/tmp/test.tex"
     self.assertEqual(flatex.combine_path(base_path, relative_ref), result)