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

13 lines
164 B
Go
Raw Normal View History

2016-07-26 01:30:28 +05:30
package memory
import (
"testing"
"github.com/coreos/dex/storage/conformance"
2016-07-26 01:30:28 +05:30
)
func TestStorage(t *testing.T) {
s := New()
conformance.RunTestSuite(t, s)
2016-07-26 01:30:28 +05:30
}