+def test_check_database_version_good(property_table, temp_db_conn, def_config):
+ property_table.set('database_version',
+ str(nominatim_db.version.NOMINATIM_VERSION))
+ assert chkdb.check_database_version(temp_db_conn, def_config) == chkdb.CheckState.OK
+
+def test_check_database_version_bad(property_table, temp_db_conn, def_config):
+ property_table.set('database_version', '3.9.9-9')
+ assert chkdb.check_database_version(temp_db_conn, def_config) == chkdb.CheckState.FATAL
+
+