This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
dex/storage/memory/memory_test.go

13 lines
164 B
Go

package memory
import (
"testing"
"github.com/coreos/dex/storage/conformance"
)
func TestStorage(t *testing.T) {
s := New()
conformance.RunTestSuite(t, s)
}