Beispiel #1
0
def test_matches_any_no_match():
    assert not matches_any('hello.txt', ['abc.txt' '*.py'])
Beispiel #2
0
def test_matches_any_match():
    assert matches_any('hello.txt', ['abc.txt', '*.txt'])