github.com/wawandco/ox@v0.13.6-0.20230809142027-913b3d837f2a/plugins/tools/ox/action/templates/actions_test.go.tmpl (about)

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