You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-06-21 00:29:44 +02:00
.github
contrib
docs
pkg
apis
ip
middleware
options
util
util.go
util_suite_test.go
util_test.go
common.go
cookie.go
header.go
legacy_options.go
legacy_options_test.go
load.go
load_test.go
logging.go
options.go
options_suite_test.go
sessions.go
upstreams.go
sessions
authentication
cookies
encryption
header
ip
logger
middleware
requests
sessions
upstream
util
validation
providers
test
.dockerignore
.gitignore
.golangci.yml
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Dockerfile
Dockerfile.arm64
Dockerfile.armv6
LICENSE
MAINTAINERS
Makefile
README.md
RELEASE.md
dist.sh
go.mod
go.sum
http.go
http_test.go
logging_handler.go
logging_handler_test.go
main.go
nsswitch.conf
oauthproxy.go
oauthproxy_test.go
templates.go
templates_test.go
validator.go
validator_test.go
version.go
watcher.go
watcher_unsupported.go
17 lines
280 B
Go
17 lines
280 B
Go
![]() |
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)
|
||
|
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Options Util Suite")
|
||
|
}
|