From 3b81c50dde8e39407b9701bc1ebbe86f7ddc69f8 Mon Sep 17 00:00:00 2001
From: Simon Rose <simon.rose@ess.eu>
Date: Mon, 21 Jun 2021 17:43:58 +0200
Subject: [PATCH] Tests that the database file is installed correctly

---
 tests/test_build.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/test_build.py b/tests/test_build.py
index ffbdca77..270d3ade 100644
--- a/tests/test_build.py
+++ b/tests/test_build.py
@@ -67,3 +67,7 @@ def test_patch(wrapper):
     rc, _, _ = run_make(wrapper, "build", __DEBUG_VERSION=MODULE_VERSION)
     assert rc == 0
     assert any((wrapper / TEST_MODULE_NAME).glob("O.*"))
+
+    rc, _, _ = run_make(wrapper, "cellinstall", __DEBUG_VERSION=MODULE_VERSION)
+    assert rc == 0
+    assert any((wrapper / "cellMods").glob("**/*.db"))
\ No newline at end of file
-- 
GitLab