summaryrefslogtreecommitdiff
path: root/pkg/bindings/test/test_suite_test.go
blob: d2c2c78381326387d7ada05fd154042f4e6a0218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package test_bindings_test

import (
	"testing"

	. "github.com/onsi/ginkgo"
	. "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")
}