dex/storage/memory/memory_test.go

26 lines
489 B
Go

package memory
import (
"os"
"testing"
"github.com/sirupsen/logrus"
"github.com/dexidp/dex/pkg/log"
"github.com/dexidp/dex/storage"
"github.com/dexidp/dex/storage/conformance"
)
func TestStorage(t *testing.T) {
logger := log.NewLogrusLogger(&logrus.Logger{
Out: os.Stderr,
Formatter: &logrus.TextFormatter{DisableColors: true},
Level: logrus.DebugLevel,
})
newStorage := func() storage.Storage {
return New(logger)
}
conformance.RunTests(t, newStorage)
}