Pillow/Tests/test_image_tobitmap.py

23 lines
473 B
Python
Raw Normal View History

2014-07-07 21:03:50 +04:00
from helper import unittest, PillowTestCase, lena, fromstring
2014-06-10 13:10:47 +04:00
class TestImageToBitmap(PillowTestCase):
2014-06-10 13:10:47 +04:00
def test_sanity(self):
2014-06-10 13:10:47 +04:00
self.assertRaises(ValueError, lambda: lena().tobitmap())
lena().convert("1").tobitmap()
2014-06-10 13:10:47 +04:00
im1 = lena().convert("1")
2014-06-10 13:10:47 +04:00
bitmap = im1.tobitmap()
self.assertIsInstance(bitmap, bytes)
self.assert_image_equal(im1, fromstring(bitmap))
if __name__ == '__main__':
unittest.main()
# End of file