10 lines
290 B
Python
10 lines
290 B
Python
from pytest import fixture
|
|
|
|
import tungston.core.ecology.humidity as humidity
|
|
|
|
|
|
# Tests ############################################################################################
|
|
|
|
def test_within():
|
|
assert humidity.within(humidity.DAMP, humidity.DRY) == [humidity.DAMP, humidity.DRY]
|