github.com/paketo-buildpacks/packit@v1.3.2-0.20211206231111-86b75c657449/init_test.go (about)

     1  package packit_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/sclevine/spec"
     7  	"github.com/sclevine/spec/report"
     8  )
     9  
    10  func TestUnitPackit(t *testing.T) {
    11  	suite := spec.New("packit", spec.Report(report.Terminal{}))
    12  	suite("Build", testBuild)
    13  	suite("Detect", testDetect)
    14  	suite("Environment", testEnvironment)
    15  	suite("Layer", testLayer)
    16  	suite("Layers", testLayers)
    17  	suite("Run", testRun)
    18  	suite.Run(t)
    19  }