2016-07-26 01:30:28 +05:30
|
|
|
package memory
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-09-18 06:14:53 +05:30
|
|
|
"github.com/coreos/dex/storage/conformance"
|
2016-07-26 01:30:28 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestStorage(t *testing.T) {
|
2016-10-13 07:17:47 +05:30
|
|
|
conformance.RunTests(t, New)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|