2014-07-07 21:03:50 +04:00
|
|
|
from helper import unittest, PillowTestCase
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
from PIL import FontFile, BdfFontFile
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-23 10:19:29 +04:00
|
|
|
filename = "Tests/images/courB08.bdf"
|
2012-10-16 00:26:38 +04:00
|
|
|
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestFontBdf(PillowTestCase):
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_sanity(self):
|
|
|
|
|
|
|
|
file = open(filename, "rb")
|
|
|
|
font = BdfFontFile.BdfFontFile(file)
|
|
|
|
|
|
|
|
self.assertIsInstance(font, FontFile.FontFile)
|
|
|
|
self.assertEqual(len([_f for _f in font.glyph if _f]), 190)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|
|
|
|
|
|
|
|
# End of file
|