summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/rdv_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies/pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/rdv_test.go')
-rw-r--r--dependencies/pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/rdv_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/rdv_test.go b/dependencies/pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/rdv_test.go
new file mode 100644
index 0000000..f9c5583
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/rdv_test.go
@@ -0,0 +1,18 @@
+package rendezvous
+
+import (
+ "hash/fnv"
+ "testing"
+)
+
+func hashString(s string) uint64 {
+ h := fnv.New64a()
+ h.Write([]byte(s))
+ return h.Sum64()
+}
+
+func TestEmpty(t *testing.T) {
+ r := New([]string{}, hashString)
+ r.Lookup("hello")
+
+}