Beispiel #1
0
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix("/a/c/e/x.txt", "/a/d/")
     assert ("a", 1) == test
Beispiel #2
0
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix("/a/a.txt", "/a/b.txt/")
     assert ("a", 1) == test
Beispiel #3
0
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix("/abc/d", "/abe/f")
     assert (None, 0) == test
Beispiel #4
0
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix("/a/b/c/", "/a/b")
     assert ("a/b", 2) == test
 def test_common_path_prefix10(self):
     test = paths.common_path_prefix('/a/b/c.txt', '/a/b/b.txt')
     assert ('a/b', 2) == test
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix('/a/c.txt', '/a/')
     assert ('a', 1) == test
 def test_common_path_prefix10(self):
     test = paths.common_path_prefix('/a/b/c.txt', '/a/b/b.txt')
     assert ('a/b', 2) == test
 def test_common_path_prefix_path_elements_are_similar(self):
     test = paths.common_path_prefix('/a/b/c', '/a/b/d')
     assert ('a/b', 2) == test
 def test_common_path_prefix_ignore_training_slashes(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b/c/')
     assert ('a/b/c', 3) == test
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b')
     assert ('a/b', 2) == test
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix('/abc/d', '/abe/f')
     assert (None, 0) == test
 def test_common_path_prefix_path_elements_are_similar(self):
     test = paths.common_path_prefix('/a/b/c', '/a/b/d')
     assert ('a/b', 2) == test
 def test_common_path_prefix_root_path(self):
     test = paths.common_path_prefix('/', '/a/b/c')
     assert (None, 0) == test
Beispiel #14
0
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix("/a/c/", "/a/d/")
     assert ("a", 1) == test
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix('/a/c/e/x.txt', '/a/d/')
     assert ('a', 1) == test
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix('/a', '/a')
     assert ('a', 1) == test
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix('/a/c/e/', '/a/c/f/')
     assert ('a/c', 2) == test
 def test_common_path_prefix_ignore_training_slashes(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b/c/')
     assert ('a/b/c', 3) == test
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix('/a/a.txt', '/a/b.txt/')
     assert ('a', 1) == test
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix('/a/c/e/', '/a/c/f/')
     assert ('a/c', 2) == test
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix('/a/c.txt', '/a/')
     assert ('a', 1) == test
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix('/a', '/a')
     assert ('a', 1) == test
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix('/a/c/', '/a/d/')
     assert ('a', 1) == test
Beispiel #24
0
 def test_common_path_prefix_ignore_training_slashes(self):
     test = paths.common_path_prefix("/a/b/c/", "/a/b/c/")
     assert ("a/b/c", 3) == test
Beispiel #25
0
 def test_common_path_prefix3(self):
     test = paths.common_path_prefix('/a/b', '/a/b/c')
     assert test == ('a/b', 2)
Beispiel #26
0
 def test_common_path_prefix10(self):
     test = paths.common_path_prefix("/a/b/c.txt", "/a/b/b.txt")
     assert ("a/b", 2) == test
Beispiel #27
0
 def test_common_path_prefix_root_path(self):
     test = paths.common_path_prefix('/', '/a/b/c')
     assert test == (None, 0)
Beispiel #28
0
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix("/a/c/e/", "/a/c/f/")
     assert ("a/c", 2) == test
Beispiel #29
0
 def test_common_path_prefix11(self):
     test = paths.common_path_prefix('/a/b/c.txt', '/a/b.txt')
     assert test == ('a', 1)
Beispiel #30
0
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix("/a/c.txt", "/a/")
     assert ("a", 1) == test
Beispiel #31
0
 def test_common_path_prefix12(self):
     test = paths.common_path_prefix('/a/c/e/x.txt', '/a/d/a.txt')
     assert test == ('a', 1)
 def test_common_path_prefix1(self):
     test = paths.common_path_prefix('/a/b/c', '/a/b/c')
     assert ('a/b/c', 3) == test
Beispiel #33
0
 def test_common_path_prefix15(self):
     test = paths.common_path_prefix('/a/c/e/', '/a/c/a.txt')
     assert test == ('a/c', 2)
 def test_common_path_prefix_root_root(self):
     test = paths.common_path_prefix('/', '/')
     assert (None, 0) == test
Beispiel #35
0
 def test_common_path_prefix18(self):
     test = paths.common_path_prefix('/a/c/', '/a/')
     assert test == ('a', 1)
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix('/abc/d', '/abe/f')
     assert (None, 0) == test
Beispiel #37
0
 def test_common_path_prefix1(self):
     test = paths.common_path_prefix("/a/b/c", "/a/b/c")
     assert ("a/b/c", 3) == test
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b')
     assert ('a/b', 2) == test
Beispiel #39
0
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix("/a", "/a")
     assert ("a", 1) == test
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix('/a/c/e/x.txt', '/a/d/')
     assert ('a', 1) == test
Beispiel #41
0
 def test_common_path_prefix_root_root(self):
     test = paths.common_path_prefix("/", "/")
     assert (None, 0) == test
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix('/a/a.txt', '/a/b.txt/')
     assert ('a', 1) == test
Beispiel #43
0
 def test_common_path_prefix_path_elements_are_similar(self):
     test = paths.common_path_prefix("/a/b/c", "/a/b/d")
     assert ("a/b", 2) == test
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix('/a/c/', '/a/d/')
     assert ('a', 1) == test
 def test_common_path_prefix1(self):
     test = paths.common_path_prefix('/a/b/c', '/a/b/c')
     assert ('a/b/c', 3) == test