dex/storage/memory/memory_test.go

13 lines
165 B
Go
Raw Normal View History

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