()
| 699 | |
| 700 | |
| 701 | def test_set_wrong_linestyle(): |
| 702 | c = Collection() |
| 703 | with pytest.raises(ValueError, match="Do not know how to convert 'fuzzy'"): |
| 704 | c.set_linestyle('fuzzy') |
| 705 | |
| 706 | |
| 707 | @pytest.mark.parametrize('ls', ['', ' ', 'none']) |
nothing calls this directly
no test coverage detected
searching dependent graphs…