feat(Q3): add temperature, conditions, bbox columns to wildlife_sightings
This commit is contained in:
13
tests/unit/test_wildlife_schema.py
Normal file
13
tests/unit/test_wildlife_schema.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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]
|
||||
Reference in New Issue
Block a user