示例#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