13 lines
179 B
Go
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)
|
|
}
|