blob: ac5d870da429adaebdc4a95f0c51d1e4f037ab5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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))
}
}
|