()
| 125 | |
| 126 | |
| 127 | def test_valid_drawstyles(): |
| 128 | line = mlines.Line2D([], []) |
| 129 | with pytest.raises(ValueError): |
| 130 | line.set_drawstyle('foobar') |
| 131 | |
| 132 | |
| 133 | def test_set_drawstyle(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…