def test_is_valid(): assert is_valid_crs('EPSG:4326')
def test_is_valid_false(): assert not is_valid_crs('EPSG:432600')
def test_is_valid_false(): with pytest.raises(CRSError): is_valid_crs('EPSG:432600')