
This commit updates the import of ginkgo to v2 in all of the tests. Signed-off-by: liornoy <lnoy@redhat.com> Co-authored-by: Sascha Grunert <sgrunert@redhat.com>
16 lines
224 B
Go
16 lines
224 B
Go
// The boilerplate needed for Ginkgo
|
|
|
|
package main
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestSample(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "plugins/sbr")
|
|
}
|