(fig_test, fig_ref)
| 51 | |
| 52 | @check_figures_equal(extensions=['png', 'pdf', 'svg']) |
| 53 | def test_unicode_minus(fig_test, fig_ref): |
| 54 | mpl.rcParams['text.usetex'] = True |
| 55 | fig_test.text(.5, .5, "$-$") |
| 56 | fig_ref.text(.5, .5, "\N{MINUS SIGN}") |
| 57 | |
| 58 | |
| 59 | def test_mathdefault(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…