ezshare/store/filesystem_test.go
2021-12-04 09:58:16 +01:00

15 lines
201 B
Go

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