10 lines
293 B
Python
10 lines
293 B
Python
from pytest import fixture
|
|
|
|
import tungston.core.ecology.flora as flora
|
|
|
|
|
|
# Tests ############################################################################################
|
|
|
|
def test_within():
|
|
assert flora.within(flora.FOREST, flora.FIELD) == [flora.FOREST, flora.CLEARING, flora.FIELD]
|