(self)
| 23 | self.assertIn(result.name, self.expected_name) |
| 24 | |
| 25 | def test_detect_from_filename(self): |
| 26 | result = magic.detect_from_filename(self.filename) |
| 27 | self.assert_result(result) |
| 28 | |
| 29 | def test_detect_from_fobj(self): |
| 30 |
nothing calls this directly
no test coverage detected