mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
13 lines
344 B
Python
13 lines
344 B
Python
"""Tests of GDAL and PROJ data finding"""
|
|
from rasterio._env import GDALDataFinder, PROJDataFinder
|
|
|
|
|
|
def test_gdal_data_find_file():
|
|
"""Find_file shouldn't raise any exceptions"""
|
|
GDALDataFinder().find_file("header.dxf")
|
|
|
|
|
|
def test_proj_data_has_data():
|
|
"""has_data shouldn't raise any exceptions"""
|
|
PROJDataFinder().has_data()
|