fonttools/Tests/feaLib/ast_test.py
Simon Cozens ebfa4ba1fe
Move feature builders to otlLib
Refactors feaLib, moving code which builds OpenType lookups into otlLib. Note that this changes feaLib's concept of `location` from a tuple to an object.
2020-07-02 14:09:10 +01:00

26 lines
806 B
Python

from fontTools.feaLib import ast
import unittest
class AstTest(unittest.TestCase):
def test_glyphname_escape(self):
statement = ast.GlyphClass()
for name in ("BASE", "NULL", "foo", "a"):
statement.append(ast.GlyphName(name))
self.assertEqual(statement.asFea(), r"[\BASE \NULL foo a]")
def test_valuerecord_none(self):
statement = ast.ValueRecord(xPlacement=10, xAdvance=20)
self.assertEqual(statement.asFea(), "<10 0 20 0>")
def test_non_object_location(self):
el = ast.Element(location=("file.fea", 1, 2))
self.assertEqual(el.location.file, "file.fea")
self.assertEqual(el.location.line, 1)
self.assertEqual(el.location.column, 2)
if __name__ == "__main__":
import sys
sys.exit(unittest.main())