mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
12 lines
291 B
Python
12 lines
291 B
Python
from rasterio.drivers import is_blacklisted
|
|
|
|
|
|
def test_netcdf_is_blacklisted():
|
|
assert is_blacklisted('netCDF', 'w')
|
|
assert is_blacklisted('netCDF', 'r+')
|
|
|
|
|
|
def test_gtiff_is_not_blacklisted():
|
|
assert not is_blacklisted('GTiff', 'w')
|
|
assert not is_blacklisted('GTiff', 'r+')
|