14 lines
406 B
Python
14 lines
406 B
Python
from vigilar.storage.schema import wildlife_sightings
|
|
|
|
|
|
def test_wildlife_sightings_has_temperature():
|
|
assert "temperature_c" in [c.name for c in wildlife_sightings.columns]
|
|
|
|
|
|
def test_wildlife_sightings_has_conditions():
|
|
assert "conditions" in [c.name for c in wildlife_sightings.columns]
|
|
|
|
|
|
def test_wildlife_sightings_has_bbox():
|
|
assert "bbox" in [c.name for c in wildlife_sightings.columns]
|