github.com/orderbynull/buffalo@v0.11.1/generators/newapp/templates/actions/actions_test.go.tmpl (about)

     1  package actions
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/gobuffalo/suite"
     7  )
     8  
     9  type ActionSuite struct {
    10  	*suite.Action
    11  }
    12  
    13  func Test_ActionSuite(t *testing.T) {
    14  	as := &ActionSuite{suite.NewAction(App())}
    15  	suite.Run(t, as)
    16  }