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