Lines Matching refs:output_path
56 output_path = tmp_path / "TestTTF-Regular.ttf"
57 args = ["-o", str(output_path), str(ttfont_path)]
63 assert output_path.exists()
64 assert TTFont(output_path).getGlyphOrder() == TTFont(ttfont_path).getGlyphOrder()
73 output_path = tmp_path / f"TestTTF-Regular#{i}.ttf"
74 args = ["-y", str(i), "-o", str(output_path), str(ttcollection_path)]
80 assert output_path.exists()
82 TTFont(output_path).getGlyphOrder()
88 output_path = tmp_path / "TestTTF.ttc"
90 __main__.main(["-o", str(output_path), str(ttcollection_path)])
92 assert output_path.exists()
93 assert len(TTCollection(output_path)) == len(TTCollection(ttcollection_path))
97 output_path = tmp_path / "TestTTF.ttc"
99 __main__.main(["-o", str(output_path), str(ttfont_path), str(ttfont_path)])
101 assert output_path.exists()
103 coll = TTCollection(output_path)