Adding tests for unimplemented features
[osm/common.git] / osm_common / tests / test_dbmemory.py
index 55c900f..a11dc1a 100644 (file)
@@ -62,6 +62,9 @@ def test_db_connect():
     assert db.logger == logging.getLogger(logger_name)
     assert len(db.db) == 0
 
+def test_db_disconnect(db_memory):
+    db_memory.db_disconnect()
+
 @pytest.mark.parametrize("table, filter", [
     ("test", {}),
     ("test", {"_id": 1}),