Test input that should raise an exception.
(location)
| 61 | ], |
| 62 | ) |
| 63 | def test_validate_location_exceptions(location): |
| 64 | """Test input that should raise an exception.""" |
| 65 | with pytest.raises((TypeError, ValueError)): |
| 66 | validate_location(location) |
| 67 | |
| 68 | |
| 69 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected