diff options
author | xengineering <me@xengineering.eu> | 2024-03-03 20:06:40 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-04 20:33:58 +0100 |
commit | b62c686702622b747ab082b7b12b3e611e1d7e1f (patch) | |
tree | aa0f31ad0381dbeb3247870744d07bc9c81ed31b /model/recipes.go | |
parent | 4dcd846aa7c8d15c96ba13380f48b985fb2c992e (diff) | |
download | ceres-b62c686702622b747ab082b7b12b3e611e1d7e1f.tar ceres-b62c686702622b747ab082b7b12b3e611e1d7e1f.tar.zst ceres-b62c686702622b747ab082b7b12b3e611e1d7e1f.zip |
model: Create test data with Go instead of SQL
This allows to formulate the test data with an object-based model which
is easier than writing it down in a relational model.
Diffstat (limited to 'model/recipes.go')
-rw-r--r-- | model/recipes.go | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/model/recipes.go b/model/recipes.go index bdd1cc1..7604fe2 100644 --- a/model/recipes.go +++ b/model/recipes.go @@ -5,7 +5,7 @@ import ( ) type RecipesElement struct { - Id int64 + Id int64 // TODO change to string Title string } @@ -35,3 +35,16 @@ func (r *Recipes) Read() error { return nil } + +func RecipesTestData() Recipes { + return []RecipesElement{ + { + Id: 1, + Title: "Pancakes", + }, + { + Id: 2, + Title: "Burger", + }, + } +} |