Pillow/Tests/test_image_tobytes.py
2015-12-08 20:31:02 +11:00

14 lines
262 B
Python

from helper import unittest, PillowTestCase, hopper
class TestImageToBytes(PillowTestCase):
def test_sanity(self):
data = hopper().tobytes()
self.assertIsInstance(data, bytes)
if __name__ == '__main__':
unittest.main()
# End of file