(value)
| 648 | |
| 649 | @pytest.mark.parametrize("value", [1, '1', '1 2 3']) |
| 650 | def test_validate_sketch_error(value): |
| 651 | with pytest.raises(ValueError, match="scale, length, randomness"): |
| 652 | validate_sketch(value) |
| 653 | with pytest.raises(ValueError, match="scale, length, randomness"): |
| 654 | mpl.rcParams["path.sketch"] = value |
| 655 | |
| 656 | |
| 657 | @pytest.mark.parametrize("value", ['1, 2, 3', '(1,2,3)']) |
nothing calls this directly
no test coverage detected
searching dependent graphs…