dex/storage/memory/memory_test.go
2016-07-26 15:51:24 -07:00

13 lines
165 B
Go

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