diff options
author | xengineering <me@xengineering.eu> | 2024-02-11 21:07:05 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-02-11 21:08:32 +0100 |
commit | 43fdfde44bce659abd30186150f667d8ba24cf2b (patch) | |
tree | b0db4fcc5e7660c6f12e4e186c179a5f7568f836 /model/recipes_test.go | |
parent | daa2934451ddb381a6a8dd8f902aacb9095200e0 (diff) | |
download | ceres-43fdfde44bce659abd30186150f667d8ba24cf2b.tar ceres-43fdfde44bce659abd30186150f667d8ba24cf2b.tar.zst ceres-43fdfde44bce659abd30186150f667d8ba24cf2b.zip |
model: Add type 'Recipes' with Read() method
This type is provided to render overview pages easily with a list of all
recipes.
Diffstat (limited to 'model/recipes_test.go')
-rw-r--r-- | model/recipes_test.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/model/recipes_test.go b/model/recipes_test.go new file mode 100644 index 0000000..1d9eda1 --- /dev/null +++ b/model/recipes_test.go @@ -0,0 +1,24 @@ +package model + +import ( + "testing" +) + +func TestRecipesRead(t *testing.T) { + InitStorage() + defer RemoveStorage() + + InitDatabase() + defer CloseDatabase() + + r := make(Recipes, 0) + + err := r.Read() + if err != nil { + t.Fatalf("Failed to read Recipes: %v\n", err) + } + + if len(r) != 2 { // TODO this needs to be aligned with model/sql/testdata.sql + t.Fatalf("Expected a list of one recipe but got %d", len(r)) + } +} |