package model import ( "testing" ) func TestRecipesRead(t *testing.T) { InitStorage() defer RemoveStorage() InitDatabase() defer CloseDatabase() InjectTestRecipes() r := make(Recipes, 0) err := r.Read() if err != nil { t.Fatalf("Failed to read Recipes: %v\n", err) } 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)) } }