dex/storage/memory/memory_test.go

12 lines
150 B
Go
Raw Normal View History

2016-07-25 13:00:28 -07:00
package memory
import (
"testing"
"github.com/coreos/dex/storage/conformance"
2016-07-25 13:00:28 -07:00
)
func TestStorage(t *testing.T) {
conformance.RunTests(t, New)
2016-07-25 13:00:28 -07:00
}