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_test.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_test.go')
-rw-r--r-- | model/recipes_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/model/recipes_test.go b/model/recipes_test.go index 1d9eda1..ac5d870 100644 --- a/model/recipes_test.go +++ b/model/recipes_test.go @@ -11,6 +11,8 @@ func TestRecipesRead(t *testing.T) { InitDatabase() defer CloseDatabase() + InjectTestRecipes() + r := make(Recipes, 0) err := r.Read() @@ -18,7 +20,7 @@ func TestRecipesRead(t *testing.T) { t.Fatalf("Failed to read Recipes: %v\n", err) } - if len(r) != 2 { // TODO this needs to be aligned with model/sql/testdata.sql + if len(r) != 2 { // TODO this needs to be aligned with model/testrecipes.go t.Fatalf("Expected a list of one recipe but got %d", len(r)) } } |