(self)
| 215 | pass |
| 216 | |
| 217 | def test_name_count(self): |
| 218 | m = magic.Magic() |
| 219 | with open(os.path.join(self.TESTDATA_DIR, 'name_use.jpg'), 'rb') as f: |
| 220 | m.from_buffer(f.read()) |
| 221 | |
| 222 | def test_pathlike(self): |
| 223 | if sys.version_info < (3, 6): |
nothing calls this directly
no test coverage detected