Pillow/Tests/test_image_tobytes.py

14 lines
251 B
Python
Raw Normal View History

2014-06-10 13:10:47 +04:00
from helper import unittest, lena
2014-06-10 13:10:47 +04:00
class TestImageToBytes(unittest.TestCase):
def test_sanity(self):
data = lena().tobytes()
self.assertTrue(isinstance(data, bytes))
if __name__ == '__main__':
unittest.main()
# End of file