diff options
author | xengineering <me@xengineering.eu> | 2024-05-09 10:02:00 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-09 10:02:00 +0200 |
commit | a2038b0ea35d1466c84e6e04a2e4597fc038815a (patch) | |
tree | fe94c7992dc5f7efb2b8266a5974be2430980cbf /model/recipes_test.go | |
parent | 0ba1a7661a81200db98e40149eef1e39fd22f407 (diff) | |
download | ceres-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.go | 5 |
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() |