summaryrefslogtreecommitdiff
path: root/model/recipes_test.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-09 10:02:00 +0200
committerxengineering <me@xengineering.eu>2024-05-09 10:02:00 +0200
commita2038b0ea35d1466c84e6e04a2e4597fc038815a (patch)
treefe94c7992dc5f7efb2b8266a5974be2430980cbf /model/recipes_test.go
parent0ba1a7661a81200db98e40149eef1e39fd22f407 (diff)
downloadceres-a2038b0ea35d1466c84e6e04a2e4597fc038815a.tar
ceres-a2038b0ea35d1466c84e6e04a2e4597fc038815a.tar.zst
ceres-a2038b0ea35d1466c84e6e04a2e4597fc038815a.zip
Restructure database-related functions
Diffstat (limited to 'model/recipes_test.go')
-rw-r--r--model/recipes_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/model/recipes_test.go b/model/recipes_test.go
index 15b90b6..d17ed92 100644
--- a/model/recipes_test.go
+++ b/model/recipes_test.go
@@ -21,8 +21,9 @@ func TestRecipesRead(t *testing.T) {
storage.Create()
}
- InitDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
- defer CloseDatabase()
+ ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
+ defer DisconnectDatabase()
+ MigrateDatabase()
InjectTestRecipes()