mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
13 lines
240 B
Python
13 lines
240 B
Python
|
from __future__ import annotations
|
||
|
import pytest
|
||
|
|
||
|
from PIL import FontFile
|
||
|
|
||
|
|
||
|
def test_save(tmp_path):
|
||
|
tempname = str(tmp_path / "temp.pil")
|
||
|
|
||
|
font = FontFile.FontFile()
|
||
|
with pytest.raises(ValueError):
|
||
|
font.save(tempname)
|