From 3c76822f34384a3365b720f12f7e391bce575298 Mon Sep 17 00:00:00 2001 From: Jeffrey Vervoort Date: Fri, 1 Mar 2024 10:47:41 +0100 Subject: [PATCH] Add happy path test for the EDR GeoJSON feature collection. --- tests/test_edr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_edr.py b/tests/test_edr.py index 0376f71..cf06bd6 100644 --- a/tests/test_edr.py +++ b/tests/test_edr.py @@ -5,6 +5,7 @@ from edr_pydantic.capabilities import LandingPageModel from edr_pydantic.collections import Collections from edr_pydantic.collections import Instance +from edr_pydantic.edr_feature_collection import EDRFeatureCollection from edr_pydantic.unit import Unit from pydantic import ValidationError @@ -13,6 +14,7 @@ ("doc-example-collections.json", Collections), ("simple-instance.json", Instance), ("landing-page.json", LandingPageModel), + ("edr-geojson-feature-collection.json", EDRFeatureCollection), ]