package store_test import ( "testing" "github.uio.no/torjus/apiary/honeypot/ssh/store" ) func TestMemoryStore(t *testing.T) { s := &store.MemoryStore{} testLoginAttemptStore(s, t) } func TestMemoryStoreWithCache(t *testing.T) { backend := &store.MemoryStore{} s := store.NewCachingStore(backend) testLoginAttemptStore(s, t) }