1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-04-23 12:18:50 +02:00
oauth2-proxy/pkg/apis/options/util/util_suite_test.go

18 lines
315 B
Go
Raw Normal View History

2020-07-26 04:50:18 +01:00
package util
import (
"testing"
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/logger"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestUtilSuite(t *testing.T) {
logger.SetOutput(GinkgoWriter)
logger.SetErrOutput(GinkgoWriter)
2020-07-26 04:50:18 +01:00
RegisterFailHandler(Fail)
RunSpecs(t, "Options Util Suite")
}