Files
mcpacker/tungston/core/ecology/heat_test.py
T

14 lines
330 B
Python

from pytest import fixture
import tungston.core.ecology.heat as heat
# Tests ############################################################################################
def test_within():
assert (
heat.within(heat.SUBTROPICAL, heat.BOREAL)
==
[heat.SUBTROPICAL, heat.TEMPERATE, heat.BOREAL]
)