mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
13 lines
260 B
Python
13 lines
260 B
Python
|
from tester import *
|
||
|
|
||
|
from PIL import Image
|
||
|
try:
|
||
|
from PIL import ImageFont
|
||
|
ImageFont.core.getfont # check if freetype is available
|
||
|
except ImportError:
|
||
|
skip()
|
||
|
|
||
|
def test_sanity():
|
||
|
|
||
|
assert_match(ImageFont.core.freetype2_version, "\d+\.\d+\.\d+$")
|