...

Source file src/edge-infra.dev/pkg/lib/filesystem/filesystem_test.go

Documentation: edge-infra.dev/pkg/lib/filesystem

     1  package filesystem
     2  
     3  import (
     4  	"testing"
     5  
     6  	gk "github.com/onsi/ginkgo/v2"
     7  	gm "github.com/onsi/gomega"
     8  )
     9  
    10  func TestSuite(t *testing.T) {
    11  	gm.RegisterFailHandler(gk.Fail)
    12  	gk.RunSpecs(t, "File system tests")
    13  }
    14  

View as plain text