def test_autohintmm_unicode(args): with pytest.raises(TypeError): _psautohint.autohintmm(*args)
def test_autohintmm_good_args(): _psautohint.autohintmm(INFO, (GLYPH, GLYPH), (NAME, NAME))
def test_autohintmm_bad_args(args): with pytest.raises(TypeError): _psautohint.autohintmm(*args)
def test_autohintmm_bad_glyphs(glyphs): with pytest.raises(_psautohint.error): _psautohint.autohintmm(INFO, glyphs, (NAME, NAME))