apiary/honeypot/store/memory_test.go

13 lines
185 B
Go
Raw Normal View History

2021-09-17 00:01:43 +00:00
package store_test
2021-04-10 05:58:01 +00:00
2021-09-17 00:01:43 +00:00
import (
"testing"
2021-04-10 05:58:01 +00:00
2021-09-17 00:01:43 +00:00
"github.uio.no/torjus/apiary/honeypot/store"
)
2021-04-10 05:58:01 +00:00
2021-09-17 00:01:43 +00:00
func TestMemoryStore(t *testing.T) {
s := &store.MemoryStore{}
testLoginAttemptStore(s, t)
2021-04-10 05:58:01 +00:00
}