github.com/jacobsoderblom/buffalo@v0.11.0/generators/resource/templates/actions/resource-use_model_test.go.tmpl (about)

     1  package actions
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/require"
     7  )
     8  {{ range $a := .actions }}
     9  func (as *ActionSuite) Test_{{$.opts.Name.Resource}}Resource_{{ camelize $a }}() {
    10  	as.Fail("Not Implemented!")
    11  }
    12  {{ end }}