apiary/honeypot/store/cache_test.go
2021-09-17 02:01:43 +02:00

14 lines
227 B
Go

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