Пример #1
0
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix("/a/c/e/x.txt", "/a/d/")
     assert ("a", 1) == test
Пример #2
0
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix("/a/a.txt", "/a/b.txt/")
     assert ("a", 1) == test
Пример #3
0
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix("/abc/d", "/abe/f")
     assert (None, 0) == test
Пример #4
0
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix("/a/b/c/", "/a/b")
     assert ("a/b", 2) == test
Пример #5
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
Пример #6
0
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix('/a/c.txt', '/a/')
     assert ('a', 1) == test
Пример #7
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
Пример #8
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
Пример #9
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
Пример #10
0
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b')
     assert ('a/b', 2) == test
Пример #11
0
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix('/abc/d', '/abe/f')
     assert (None, 0) == test
Пример #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
Пример #13
0
 def test_common_path_prefix_root_path(self):
     test = paths.common_path_prefix('/', '/a/b/c')
     assert (None, 0) == test
Пример #14
0
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix("/a/c/", "/a/d/")
     assert ("a", 1) == test
Пример #15
0
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix('/a/c/e/x.txt', '/a/d/')
     assert ('a', 1) == test
Пример #16
0
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix('/a', '/a')
     assert ('a', 1) == test
Пример #17
0
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix('/a/c/e/', '/a/c/f/')
     assert ('a/c', 2) == test
Пример #18
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
Пример #19
0
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix('/a/a.txt', '/a/b.txt/')
     assert ('a', 1) == test
Пример #20
0
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix('/a/c/e/', '/a/c/f/')
     assert ('a/c', 2) == test
Пример #21
0
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix('/a/c.txt', '/a/')
     assert ('a', 1) == test
Пример #22
0
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix('/a', '/a')
     assert ('a', 1) == test
Пример #23
0
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix('/a/c/', '/a/d/')
     assert ('a', 1) == test
Пример #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
Пример #25
0
 def test_common_path_prefix3(self):
     test = paths.common_path_prefix('/a/b', '/a/b/c')
     assert test == ('a/b', 2)
Пример #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
Пример #27
0
 def test_common_path_prefix_root_path(self):
     test = paths.common_path_prefix('/', '/a/b/c')
     assert test == (None, 0)
Пример #28
0
 def test_common_path_prefix16(self):
     test = paths.common_path_prefix("/a/c/e/", "/a/c/f/")
     assert ("a/c", 2) == test
Пример #29
0
 def test_common_path_prefix11(self):
     test = paths.common_path_prefix('/a/b/c.txt', '/a/b.txt')
     assert test == ('a', 1)
Пример #30
0
 def test_common_path_prefix19(self):
     test = paths.common_path_prefix("/a/c.txt", "/a/")
     assert ("a", 1) == test
Пример #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)
Пример #32
0
 def test_common_path_prefix1(self):
     test = paths.common_path_prefix('/a/b/c', '/a/b/c')
     assert ('a/b/c', 3) == test
Пример #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)
Пример #34
0
 def test_common_path_prefix_root_root(self):
     test = paths.common_path_prefix('/', '/')
     assert (None, 0) == test
Пример #35
0
 def test_common_path_prefix18(self):
     test = paths.common_path_prefix('/a/c/', '/a/')
     assert test == ('a', 1)
Пример #36
0
 def test_common_path_prefix_no_match(self):
     test = paths.common_path_prefix('/abc/d', '/abe/f')
     assert (None, 0) == test
Пример #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
Пример #38
0
 def test_common_path_prefix8(self):
     test = paths.common_path_prefix('/a/b/c/', '/a/b')
     assert ('a/b', 2) == test
Пример #39
0
 def test_common_path_prefix4(self):
     test = paths.common_path_prefix("/a", "/a")
     assert ("a", 1) == test
Пример #40
0
 def test_common_path_prefix13(self):
     test = paths.common_path_prefix('/a/c/e/x.txt', '/a/d/')
     assert ('a', 1) == test
Пример #41
0
 def test_common_path_prefix_root_root(self):
     test = paths.common_path_prefix("/", "/")
     assert (None, 0) == test
Пример #42
0
 def test_common_path_prefix17(self):
     test = paths.common_path_prefix('/a/a.txt', '/a/b.txt/')
     assert ('a', 1) == test
Пример #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
Пример #44
0
 def test_common_path_prefix20(self):
     test = paths.common_path_prefix('/a/c/', '/a/d/')
     assert ('a', 1) == test
Пример #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