Files
containernetworking-plugins/plugins/sample/sample_suite_test.go
T

16 lines
222 B
Go

// The boilerplate needed for Ginkgo
package main
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestSample(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "sample suite")
}