mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
14 lines
281 B
Python
14 lines
281 B
Python
"""Enum tests"""
|
|
|
|
from rasterio import enums
|
|
|
|
|
|
def test_grey_gray():
|
|
"""Name of ColorInterp.grey is 'gray'"""
|
|
assert enums.ColorInterp.grey.name == "gray"
|
|
|
|
|
|
def test_gray_gray():
|
|
"""Name of ColorInterp.gray is 'gray'"""
|
|
assert enums.ColorInterp.gray.name == "gray"
|