apiary/honeypot/store/memory_test.go
2021-09-17 15:00:58 +02:00

18 lines
332 B
Go

package store_test
import (
"testing"
"github.uio.no/torjus/apiary/honeypot/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)
}