Example #1
0
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix("/a/c/e/x.txt", "/a/d/")
     assert ("a", 1) == test
Example #2
0
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix("/a/a.txt", "/a/b.txt/")
     assert ("a", 1) == test
Example #3
0
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix("/abc/d", "/abe/f")
     assert (None, 0) == test
Example #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
Example #10
0
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b')
     assert ('a/b', 2) == test
Example #11
0
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix('/abc/d', '/abe/f')
     assert (None, 0) == test
Example #12
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
Example #13
0
 def test_common_path_prefix_root_path(self):
     test = paths.common_path_prefix('/', '/a/b/c')
     assert (None, 0) == test
Example #14
0
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix("/a/c/", "/a/d/")
     assert ("a", 1) == test
Example #15
0
 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
Example #17
0
 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
Example #19
0
 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
Example #21
0
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix('/a/c.txt', '/a/')
     assert ('a', 1) == test
Example #22
0
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix('/a', '/a')
     assert ('a', 1) == test
Example #23
0
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix('/a/c/', '/a/d/')
     assert ('a', 1) == test
Example #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
Example #25
0
 def test_common_path_prefix3(self):
     test = paths.common_path_prefix('/a/b', '/a/b/c')
     assert test == ('a/b', 2)
Example #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
Example #27
0
 def test_common_path_prefix_root_path(self):
     test = paths.common_path_prefix('/', '/a/b/c')
     assert test == (None, 0)
Example #28
0
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix("/a/c/e/", "/a/c/f/")
     assert ("a/c", 2) == test
Example #29
0
 def test_common_path_prefix11(self):
     test = paths.common_path_prefix('/a/b/c.txt', '/a/b.txt')
     assert test == ('a', 1)
Example #30
0
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix("/a/c.txt", "/a/")
     assert ("a", 1) == test
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #45
0
 def test_common_path_prefix1(self):
     test = paths.common_path_prefix('/a/b/c', '/a/b/c')
     assert ('a/b/c', 3) == test