(self)
| 154 | ) |
| 155 | |
| 156 | def test_question_mark(self): |
| 157 | assert self.exclude(['?.py']) == convert_paths( |
| 158 | self.all_paths - {'a.py', 'b.py'} |
| 159 | ) |
| 160 | |
| 161 | def test_single_subdir_single_filename(self): |
| 162 | assert self.exclude(['foo/a.py']) == convert_paths( |
nothing calls this directly
no test coverage detected