fonttools/Tests/ttLib/tables/_v_m_t_x_test.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
330 B
Python
Raw Normal View History

from fontTools.ttLib.tables._v_m_t_x import table__v_m_t_x
import _h_m_t_x_test
import unittest
class VmtxTableTest(_h_m_t_x_test.HmtxTableTest):
@classmethod
def setUpClass(cls):
cls.tableClass = table__v_m_t_x
cls.tag = "vmtx"
if __name__ == "__main__":
import sys
2022-12-13 11:26:36 +00:00
sys.exit(unittest.main())