def test_glob_17(): s = 'aaababbabbba' p = 'aaa?a' assert G.main(p, s) == bool(re.search(glob_to_regex(p), s))
def test_glob_01(): s = 'abaaaabbbbbb' p = 'a?*b' assert G.main(p, s) == bool(re.search(glob_to_regex(p), s))