()
| 141 | |
| 142 | |
| 143 | def test_afm_kerning(): |
| 144 | fn = fm.findfont("Helvetica", fontext="afm") |
| 145 | with open(fn, 'rb') as fh: |
| 146 | afm = _afm.AFM(fh) |
| 147 | assert afm.get_kern_dist_from_name('A', 'V') == -70.0 |
| 148 | assert afm.get_kern_dist_from_name('V', 'A') == -80.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…