mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
24183d652e
for more information, see https://pre-commit.ci
16 lines
307 B
Python
16 lines
307 B
Python
import pytest
|
|
|
|
from .helper import assert_image_equal, fromstring, hopper
|
|
|
|
|
|
def test_sanity():
|
|
with pytest.raises(ValueError):
|
|
hopper().tobitmap()
|
|
|
|
im1 = hopper().convert("1")
|
|
|
|
bitmap = im1.tobitmap()
|
|
|
|
assert isinstance(bitmap, bytes)
|
|
assert_image_equal(im1, fromstring(bitmap))
|