(self)
| 115 | assert convert_path('foo/a.py') not in includes |
| 116 | |
| 117 | def test_single_filename(self): |
| 118 | assert self.exclude(['a.py']) == convert_paths( |
| 119 | self.all_paths - {'a.py'} |
| 120 | ) |
| 121 | |
| 122 | def test_single_filename_leading_dot_slash(self): |
| 123 | assert self.exclude(['./a.py']) == convert_paths( |
nothing calls this directly
no test coverage detected