mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
8 lines
133 B
Python
8 lines
133 B
Python
from tester import *
|
|
|
|
from PIL import Image
|
|
|
|
def test_sanity():
|
|
data = lena().tobytes()
|
|
assert_true(isinstance(data, bytes))
|