Files
california-equity-git/.venv/lib/python3.12/site-packages/geopandas/tests/test_datasets.py
2024-12-19 20:22:56 -08:00

13 lines
395 B
Python

from geopandas import GeoDataFrame, read_file
from geopandas.datasets import get_path
import pytest
@pytest.mark.parametrize(
"test_dataset", ["naturalearth_lowres", "naturalearth_cities", "nybb"]
)
def test_read_paths(test_dataset):
with pytest.warns(FutureWarning, match="The geopandas.dataset module is"):
assert isinstance(read_file(get_path(test_dataset)), GeoDataFrame)