github.com/segakazzz/buffalo@v0.16.22-0.20210119082501-1f52048d3feb/genny/build/options_test.go (about)

     1  package build
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/require"
     7  )
     8  
     9  func Test_Options_Validate(t *testing.T) {
    10  	r := require.New(t)
    11  
    12  	opts := &Options{}
    13  	r.NoError(opts.Validate())
    14  }