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

     1  package fs_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/sclevine/spec"
     7  	"github.com/sclevine/spec/report"
     8  )
     9  
    10  func TestUnitFS(t *testing.T) {
    11  	suite := spec.New("packit/fs", spec.Report(report.Terminal{}))
    12  	suite("ChecksumCalculator", testChecksumCalculator)
    13  	suite("Copy", testCopy)
    14  	suite("Exists", testExists)
    15  	suite("IsEmptyDir", testIsEmptyDir)
    16  	suite("Move", testMove)
    17  	suite.Run(t)
    18  }