13 lines
395 B
Python
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)
|