()
| 4 | |
| 5 | |
| 6 | def test_asterisk() -> None: |
| 7 | glob = Glob('foo/*') |
| 8 | assert glob.regexp.match('bar/') is None |
| 9 | assert glob.regexp.match('foo/bar') is not None |
| 10 | assert glob.regexp.match('foo/bar/baz') is None |
| 11 | |
| 12 | |
| 13 | def test_double_asteritsk() -> None: |