stub more tests

main
bel 2023-11-05 20:04:56 -07:00
parent e227483614
commit 6856882ba8
1 changed files with 32 additions and 0 deletions

View File

@ -83,4 +83,36 @@ func testDriver(t *testing.T, d Driver) {
t.Error(*err) t.Error(*err)
} }
}) })
t.Run("conditional set vs nothing", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional set vs older", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional set vs equal", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional set vs newer", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional del vs nothing", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional del vs older", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional del vs equal", func(t *testing.T) {
t.Error("not impl")
})
t.Run("conditional del vs newer", func(t *testing.T) {
t.Error("not impl")
})
} }