Example #1
0
func TestGoLevelDBKVCrud(t *testing.T) {
	s := open(t, nil)
	defer cleanup(t, s)
	test.CommonTestKVCrud(t, s)
}
Example #2
0
func TestCznicbKVCrud(t *testing.T) {
	s := open(t, nil)
	defer cleanup(t, s)
	test.CommonTestKVCrud(t, s)
}
Example #3
0
func TestMetricsKVCrud(t *testing.T) {
	s := open(t, nil)
	defer cleanup(t, s)
	test.CommonTestKVCrud(t, s)
}
Example #4
0
func TestMossWithLowerKVCrud(t *testing.T) {
	tmpDir, s := openWithLower(t, nil)
	defer cleanupWithLower(t, s, tmpDir)
	test.CommonTestKVCrud(t, s)
}