mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-06-21 20:59:14 +00:00
14 lines
210 B
Go
14 lines
210 B
Go
|
package unstructured_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo/v2"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestSuite(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Unstructured Test Suite")
|
||
|
}
|