1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-15 00:15:00 +02:00

Add HealthCheck middleware

This commit is contained in:
Joel Speed
2020-06-14 16:42:05 +01:00
parent 43f214ce8b
commit ca416a2ebb
5 changed files with 180 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package middleware
import (
"testing"
"github.com/oauth2-proxy/oauth2-proxy/pkg/logger"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestMiddlewareSuite(t *testing.T) {
logger.SetOutput(GinkgoWriter)
RegisterFailHandler(Fail)
RunSpecs(t, "Middleware")
}