package memory import ( "io" "log/slog" "testing" "github.com/dexidp/dex/storage" "github.com/dexidp/dex/storage/conformance" ) func TestStorage(t *testing.T) { logger := slog.New(slog.NewTextHandler(io.Discard, &slog.HandlerOptions{})) newStorage := func() storage.Storage { return New(logger) } conformance.RunTests(t, newStorage) }