ezshare/store/memory_test.go
2021-12-03 23:51:48 +01:00

13 lines
179 B
Go

package store_test
import (
"testing"
"gitea.benny.dog/torjus/ezshare/store"
)
func TestMemoryStore(t *testing.T) {
s := store.NewMemoryFileStore()
doFileStoreTest(s, t)
}