mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-04-13 11:50:45 +02:00
16 lines
283 B
Go
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")
|
||
|
}
|