test(lib/store): make generic storage interface test adaptor

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-07-03 04:44:29 +00:00
parent e538f55e89
commit 2b3bfdc40b
2 changed files with 93 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package memory
import (
"testing"
"github.com/TecharoHQ/anubis/lib/store/storetest"
)
func TestImpl(t *testing.T) {
storetest.Common(t, New(t.Context()))
}