Adding tests for unimplemented features
Helps to detect when certain feature was implemented but a test
is not in place to verify it.
Change-Id: I7a98036c94117b867206dd8c4cc87fa8cfd1eafb
Signed-off-by: Eduardo Sousa <eduardosousa@av.it.pt>
diff --git a/osm_common/tests/test_dbmemory.py b/osm_common/tests/test_dbmemory.py
index 55c900f..a11dc1a 100644
--- a/osm_common/tests/test_dbmemory.py
+++ b/osm_common/tests/test_dbmemory.py
@@ -62,6 +62,9 @@
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}),