This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/storage/memory/memory_test.go
2016-10-03 12:48:25 -07:00

12 lines
154 B
Go

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