make test text pass if text is missing

This commit is contained in:
John Cupitt 2017-08-11 09:31:01 +01:00
parent 47a763209a
commit 279c1ef55f

View File

@ -409,6 +409,8 @@ class TestCreate(unittest.TestCase):
self.assertEqual(im.format, Vips.BandFormat.FLOAT)
def test_text(self):
x = Vips.type_find("VipsOperation", "text")
if x.is_instantiatable():
im = Vips.Image.text("Hello, world!")
self.assertTrue(im.width > 10)
self.assertTrue(im.height > 10)