18 lines
332 B
Go
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)
|
|
}
|