1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-04-11 11:41:53 +02:00
oauth2-proxy/pkg/sessions/persistence/persistence_suite_test.go
2020-07-21 22:13:17 -07:00

16 lines
283 B
Go

package persistence
import (
"testing"
"github.com/oauth2-proxy/oauth2-proxy/pkg/logger"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestPersistenceSuite(t *testing.T) {
logger.SetOutput(GinkgoWriter)
RegisterFailHandler(Fail)
RunSpecs(t, "Persistence")
}