github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/worker/runtime/spec/suite_test.go (about)

     1  package spec_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/require"
     7  	"github.com/stretchr/testify/suite"
     8  )
     9  
    10  func TestSuite(t *testing.T) {
    11  	suite.Run(t, &SpecSuite{
    12  		Assertions: require.New(t),
    13  	})
    14  }