summaryrefslogtreecommitdiff
path: root/model/recipe.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/recipe.go')
-rw-r--r--model/recipe.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/model/recipe.go b/model/recipe.go
index c9ef6fb..ce16ee4 100644
--- a/model/recipe.go
+++ b/model/recipe.go
@@ -126,3 +126,26 @@ func (r *Recipe) Delete() error {
return nil
}
+
+func RecipeTestData() []Recipe {
+ return []Recipe{
+ {
+ Id: "1",
+ Title: "Pancakes",
+ Portions: "4",
+ Url: "https://example.org",
+ Notes: "Very fluffy",
+ Created: "",
+ LastChanged: "",
+ },
+ {
+ Id: "2",
+ Title: "Burger",
+ Portions: "2",
+ Url: "https://xengineering.eu/git/ceres",
+ Notes: "Delicious!",
+ Created: "",
+ LastChanged: "",
+ },
+ }
+}