()
| 101 | |
| 102 | |
| 103 | def test_rcparams_update(): |
| 104 | rc = mpl.RcParams({'figure.figsize': (3.5, 42)}) |
| 105 | bad_dict = {'figure.figsize': (3.5, 42, 1)} |
| 106 | # make sure validation happens on input |
| 107 | with pytest.raises(ValueError): |
| 108 | rc.update(bad_dict) |
| 109 | |
| 110 | |
| 111 | def test_rcparams_init(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…