From b62c686702622b747ab082b7b12b3e611e1d7e1f Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 3 Mar 2024 20:06:40 +0100 Subject: 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. --- model/recipes.go | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'model/recipes.go') 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", + }, + } +} -- cgit v1.2.3-70-g09d2