mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
14 lines
251 B
Python
14 lines
251 B
Python
from helper import unittest, lena
|
|
|
|
|
|
class TestImageToBytes(unittest.TestCase):
|
|
|
|
def test_sanity(self):
|
|
data = lena().tobytes()
|
|
self.assertTrue(isinstance(data, bytes))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# End of file
|