Files
podman/pkg/bindings/test/test_suite_test.go
Paul Holzinger 445815036f update to ginkgo v2
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2023-05-02 11:27:35 +02:00

19 lines
287 B
Go

package bindings_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/sirupsen/logrus"
)
func TestTest(t *testing.T) {
if testing.Verbose() {
logrus.SetLevel(logrus.DebugLevel)
}
RegisterFailHandler(Fail)
RunSpecs(t, "Test Suite")
}