diff options
Diffstat (limited to 'model')
-rw-r--r-- | model/database.go | 7 | ||||
-rw-r--r-- | model/recipes_test.go | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/model/database.go b/model/database.go index 85d2662..f5fd67a 100644 --- a/model/database.go +++ b/model/database.go @@ -149,8 +149,8 @@ func MigrateDatabase(execVersion string) { } } -func InjectTestRecipes() { - Transaction(func(tx *sql.Tx) error { +func InjectExampleRecipes() { + err := Transaction(func(tx *sql.Tx) error { recipes := RecipeTestData() for _, recipe := range recipes { @@ -162,6 +162,9 @@ func InjectTestRecipes() { return nil }) + if err != nil { + log.Fatalf("Failed to inject example recipes: %v", err) + } } func DisconnectDatabase() { diff --git a/model/recipes_test.go b/model/recipes_test.go index 159422f..13a8b2f 100644 --- a/model/recipes_test.go +++ b/model/recipes_test.go @@ -22,7 +22,7 @@ func TestRecipesRead(t *testing.T) { defer DisconnectDatabase() MigrateDatabase("dummy_version") - InjectTestRecipes() + InjectExampleRecipes() r := make(Recipes, 0) |