2021-09-17 00:01:43 +00:00
|
|
|
package store_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-10-21 10:36:01 +00:00
|
|
|
"github.uio.no/torjus/apiary/honeypot/ssh/store"
|
2021-09-17 00:01:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCacheStore(t *testing.T) {
|
|
|
|
backend := &store.MemoryStore{}
|
|
|
|
s := store.NewCachingStore(backend)
|
|
|
|
testLoginAttemptStore(s, t)
|
|
|
|
}
|