def test_matches_any_no_match(): assert not matches_any('hello.txt', ['abc.txt' '*.py'])
def test_matches_any_match(): assert matches_any('hello.txt', ['abc.txt', '*.txt'])