2018-04-20 02:19:13 +03:00
|
|
|
from helper import unittest, PillowTestCase, hopper
|
|
|
|
from PIL._util import py3
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestImageGetIm(PillowTestCase):
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_sanity(self):
|
2014-09-05 14:03:56 +04:00
|
|
|
im = hopper()
|
2014-06-10 13:10:47 +04:00
|
|
|
type_repr = repr(type(im.getim()))
|
2012-10-15 09:55:39 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
if py3:
|
|
|
|
self.assertIn("PyCapsule", type_repr)
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2016-11-07 15:33:46 +03:00
|
|
|
self.assertIsInstance(im.im.id, int)
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|