(self)
| 1685 | self.assertEqual(self._im.get_content_type(), f'image/{subtype}') |
| 1686 | |
| 1687 | def test_encoding(self): |
| 1688 | self._make_image('gif') |
| 1689 | payload = self._im.get_payload() |
| 1690 | self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')), |
| 1691 | self._imgdata) |
| 1692 | |
| 1693 | def test_checkSetMinor(self): |
| 1694 | self._make_image('gif') |
nothing calls this directly
no test coverage detected