コード例 #1
0
ファイル: test_extension.py プロジェクト: Lu4Lu/psautohint
def test_autohintmm_unicode(args):
    with pytest.raises(TypeError):
        _psautohint.autohintmm(*args)
コード例 #2
0
ファイル: test_extension.py プロジェクト: Lu4Lu/psautohint
def test_autohintmm_good_args():
    _psautohint.autohintmm(INFO, (GLYPH, GLYPH), (NAME, NAME))
コード例 #3
0
ファイル: test_extension.py プロジェクト: Lu4Lu/psautohint
def test_autohintmm_bad_args(args):
    with pytest.raises(TypeError):
        _psautohint.autohintmm(*args)
コード例 #4
0
ファイル: test_extension.py プロジェクト: Lu4Lu/psautohint
def test_autohintmm_bad_glyphs(glyphs):
    with pytest.raises(_psautohint.error):
        _psautohint.autohintmm(INFO, glyphs, (NAME, NAME))