apiary/honeypot/ssh/store/cache_test.go
2021-10-21 12:36:01 +02:00

14 lines
231 B
Go

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