14 lines
330 B
Python
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]
|
|
)
|