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