mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-04-11 13:19:54 +02:00
12 lines
163 B
Go
12 lines
163 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nbd-wtf/go-nostr/sdk/hints/memoryh"
|
|
)
|
|
|
|
func TestMemoryHints(t *testing.T) {
|
|
runTestWith(t, memoryh.NewHintDB())
|
|
}
|