12 lines
150 B
Go
12 lines
150 B
Go
package memory
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/coreos/dex/storage/conformance"
|
|
)
|
|
|
|
func TestStorage(t *testing.T) {
|
|
conformance.RunTests(t, New)
|
|
}
|