(validator, arg, exception_type)
| 459 | @pytest.mark.parametrize('validator, arg, exception_type', |
| 460 | generate_validator_testcases(False)) |
| 461 | def test_validator_invalid(validator, arg, exception_type): |
| 462 | with pytest.raises(exception_type): |
| 463 | validator(arg) |
| 464 | |
| 465 | |
| 466 | def test_validate_cycler_bad_color_string(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…