예제 #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