()
| 885 | |
| 886 | |
| 887 | def test_ft2font_language(): |
| 888 | # This is just a smoke test. |
| 889 | file = fm.findfont('DejaVu Sans') |
| 890 | font = ft2font.FT2Font(file) |
| 891 | font.set_text('foo') |
| 892 | font.set_text('foo', language='en') |
| 893 | font.set_text('foo', language=[('en', 1, 2)]) |
| 894 | |
| 895 | |
| 896 | def test_ft2font_loading(): |