github.com/mayra-cabrera/buffalo@v0.9.4-0.20170814145312-66d2e7772f11/generators/newapp/templates/actions/actions_test.go.tmpl (about)

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