Пример #1
0
 def test_path_with_empty_path_segment(self):
     assert score_path_match_length('./foo/bar/baz', 'foo/bar/baz') == 3
Пример #2
0
 def test_partial_match_paths(self):
     assert score_path_match_length('foo/bar/baz', 'bar/baz') == 2
     assert score_path_match_length('foo/bar/baz', 'baz') == 1
Пример #3
0
 def test_why_is_this_zero(self):
     assert score_path_match_length('foo/bar/baz', 'foo') == 0
Пример #4
0
 def test_equal_paths(self):
     assert score_path_match_length("foo/bar/baz", "foo/bar/baz") == 3
Пример #5
0
 def test_equal_paths(self):
     assert score_path_match_length('foo/bar/baz', 'foo/bar/baz') == 3
Пример #6
0
 def test_path_with_empty_path_segment(self):
     assert score_path_match_length("./foo/bar/baz", "foo/bar/baz") == 3
Пример #7
0
 def test_case_insensitive_comparison(self):
     assert score_path_match_length("./Foo/Bar/BAZ", "foo/bar/baz") == 3
Пример #8
0
 def test_partial_match_paths(self):
     assert score_path_match_length("foo/bar/baz", "bar/baz") == 2
     assert score_path_match_length("foo/bar/baz", "baz") == 1
Пример #9
0
 def test_prefix_no_score(self):
     assert score_path_match_length("foo/bar/baz", "foo") == 0
Пример #10
0
 def test_why_is_this_zero(self):
     assert score_path_match_length('foo/bar/baz', 'foo') == 0
Пример #11
0
 def test_path_with_empty_path_segment(self):
     assert score_path_match_length('./foo/bar/baz', 'foo/bar/baz') == 3
Пример #12
0
 def test_partial_match_paths(self):
     assert score_path_match_length('foo/bar/baz', 'bar/baz') == 2
     assert score_path_match_length('foo/bar/baz', 'baz') == 1
Пример #13
0
 def test_equal_paths(self):
     assert score_path_match_length('foo/bar/baz', 'foo/bar/baz') == 3
Пример #14
0
def test_score_path_match_length():
    assert score_path_match_length('foo/bar/baz', 'foo/bar/baz') == 3
    assert score_path_match_length('foo/bar/baz', 'bar/baz') == 2
    assert score_path_match_length('foo/bar/baz', 'baz') == 1
    assert score_path_match_length('foo/bar/baz', 'foo') == 0
    assert score_path_match_length('./foo/bar/baz', 'foo/bar/baz') == 3
Пример #15
0
def test_score_path_match_length():
    assert score_path_match_length('foo/bar/baz', 'foo/bar/baz') == 3
    assert score_path_match_length('foo/bar/baz', 'bar/baz') == 2
    assert score_path_match_length('foo/bar/baz', 'baz') == 1
    assert score_path_match_length('foo/bar/baz', 'foo') == 0
    assert score_path_match_length('./foo/bar/baz', 'foo/bar/baz') == 3
Пример #16
0
 def test_prefix_no_score(self):
     assert score_path_match_length('foo/bar/baz', 'foo') == 0