mirror of
https://github.com/kairos-io/immucore.git
synced 2025-08-09 18:07:21 +00:00
14 lines
196 B
Go
14 lines
196 B
Go
|
package mount_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo/v2"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestSuite(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "mount test Suite")
|
||
|
}
|