(self)
| 75 | assert self.exclude(['']) == convert_paths(self.all_paths) |
| 76 | |
| 77 | def test_no_dupes(self): |
| 78 | paths = exclude_paths(self.base, ['!a.py']) |
| 79 | assert sorted(paths) == sorted(set(paths)) |
| 80 | |
| 81 | def test_wildcard_exclude(self): |
| 82 | assert self.exclude(['*']) == {'Dockerfile', '.dockerignore'} |
nothing calls this directly
no test coverage detected