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