We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b0917e commit 6364052Copy full SHA for 6364052
1 file changed
tests/test_well_inventory.py
@@ -235,6 +235,18 @@ def test_well_inventory_db_contents():
235
== "true"
236
)
237
238
+ assert thing.well_status == file_content["well_hole_status"]
239
+ assert (
240
+ thing.datalogger_suitability_status == "Datalogger can be installed"
241
+ if file_content["datalogger_possible"].lower() == "true"
242
+ else "Datalogger cannot be installed"
243
+ )
244
245
+ thing.open_status == "Open"
246
+ if file_content["is_open"].lower() == "true"
247
+ else "Closed"
248
249
+
250
# LOCATION AND RELATED RECORDS
251
location_thing_association = (
252
session.query(LocationThingAssociation)
0 commit comments