apiary/honeypot/store/cache_test.go

14 lines
227 B
Go
Raw Normal View History

2021-09-17 00:01:43 +00:00
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)
}