Commit e2bf8ceb authored by Eric Chiang's avatar Eric Chiang Committed by Eric Chiang

storage: rename "storagetest" package to "conformance"

parent 87a7d093
// +build go1.7
// Package storagetest provides conformance tests for storage implementations.
package storagetest
// Package conformance provides conformance tests for storage implementations.
package conformance
import (
"reflect"
......
......@@ -4,7 +4,7 @@ import (
"os"
"testing"
"github.com/coreos/dex/storage/storagetest"
"github.com/coreos/dex/storage/conformance"
)
func TestLoadClient(t *testing.T) {
......@@ -73,5 +73,5 @@ func TestURLFor(t *testing.T) {
func TestStorage(t *testing.T) {
client := loadClient(t)
storagetest.RunTestSuite(t, client)
conformance.RunTestSuite(t, client)
}
......@@ -3,10 +3,10 @@ package memory
import (
"testing"
"github.com/coreos/dex/storage/storagetest"
"github.com/coreos/dex/storage/conformance"
)
func TestStorage(t *testing.T) {
s := New()
storagetest.RunTestSuite(t, s)
conformance.RunTestSuite(t, s)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment