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

     1  package scribe_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/sclevine/spec"
     7  	"github.com/sclevine/spec/report"
     8  )
     9  
    10  func TestUnitScribe(t *testing.T) {
    11  	suite := spec.New("scribe", spec.Report(report.Terminal{}))
    12  	suite("Color", testColor)
    13  	suite("Emitter", testEmitter)
    14  	suite("FormattedList", testFormattedList)
    15  	suite("FormattedMap", testFormattedMap)
    16  	suite("Logger", testLogger)
    17  	suite("Writer", testWriter)
    18  	suite.Run(t)
    19  }