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

     1  package install
     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  	err := opts.Validate()
    14  	r.NoError(err)
    15  }