()
| 87 | |
| 88 | |
| 89 | def test_valid_linestyles(): |
| 90 | line = mlines.Line2D([], []) |
| 91 | with pytest.raises(ValueError): |
| 92 | line.set_linestyle('aardvark') |
| 93 | |
| 94 | |
| 95 | @mpl.style.context('mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…