This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/storage/memory/memory_test.go
Eric Chiang bfe560ee21 rename
2016-08-10 22:31:42 -07:00

13 lines
164 B
Go

package memory
import (
"testing"
"github.com/coreos/dex/storage/storagetest"
)
func TestStorage(t *testing.T) {
s := New()
storagetest.RunTestSuite(t, s)
}