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

Add HTPasswdValidator to basic authentication package

This commit is contained in:
Joel Speed
2020-07-18 00:41:42 +01:00
parent 895403cb9b
commit 7d8ee61254
7 changed files with 239 additions and 0 deletions

View File

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