dex/storage/memory/memory_test.go

12 lines
150 B
Go
Raw Normal View History

2016-07-26 01:30:28 +05:30
package memory
import (
"testing"
"github.com/coreos/dex/storage/conformance"
2016-07-26 01:30:28 +05:30
)
func TestStorage(t *testing.T) {
conformance.RunTests(t, New)
2016-07-26 01:30:28 +05:30
}