dex/storage/memory/memory_test.go

13 lines
165 B
Go
Raw Normal View History

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