github.com/jasonish/buffalo@v0.8.2-0.20170413145823-bacbdd415f1b/examples/html-resource/actions/actions_test.go (about) 1 package actions_test 2 3 import ( 4 "github.com/gobuffalo/buffalo/examples/html-resource/models" 5 "github.com/markbates/pop" 6 ) 7 8 func tx(fn func(tx *pop.Connection)) { 9 models.DB.MigrateReset("../migrations") 10 fn(models.DB) 11 }