diff options
Diffstat (limited to 'model/recipe.go')
-rw-r--r-- | model/recipe.go | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/model/recipe.go b/model/recipe.go index d8c0f2f..59a4c4a 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -254,9 +254,16 @@ func RecipeTestData() []Recipe { Created: "", LastChanged: "", Steps: []Step{ - {Text: "Stir the dough"}, - {Text: "Heat up pan"}, - {Text: "Make pancakes!"}, + { + Text: "Stir the dough", + Ingredients: []Ingredient{ + {Amount: "4", Unit: "pieces", Type: "egg"}, + {Amount: "800", Unit: "g", Type: "special stuff"}, + {Amount: "0.5", Unit: "l", Type: "milk"}, + }, + }, + {Text: "Heat up pan", Ingredients: []Ingredient{}}, + {Text: "Make pancakes!", Ingredients: []Ingredient{}}, }, }, { |