2016-07-25 13:00:28 -07:00
|
|
|
package memory
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-09-17 18:44:53 -06:00
|
|
|
"github.com/coreos/dex/storage/conformance"
|
2016-07-25 13:00:28 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestStorage(t *testing.T) {
|
2016-10-12 18:47:47 -07:00
|
|
|
conformance.RunTests(t, New)
|
2016-07-25 13:00:28 -07:00
|
|
|
}
|