github.com/lenfree/buffalo@v0.7.3-0.20170207163156-891616ea4064/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  }