disk_test.go 170 Bytes
package kvstore

import "testing"

func TestDiskKV(t *testing.T) {
	tmp := t.TempDir() // automatically removed by testing cleanup
	kv := NewDiskKV(tmp)
	kvTest(t, kv)
}