14 lines
227 B
Go
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)
|
|
}
|