mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-09 18:18:49 +00:00
12 lines
162 B
Go
12 lines
162 B
Go
package memory
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/TecharoHQ/anubis/lib/store/storetest"
|
|
)
|
|
|
|
func TestImpl(t *testing.T) {
|
|
storetest.Common(t, New(t.Context()))
|
|
}
|