ezshare/store/filesystem_test.go

15 lines
201 B
Go
Raw Normal View History

2021-12-03 22:51:48 +00:00
package store_test
import (
"testing"
"gitea.benny.dog/torjus/ezshare/store"
)
func TestFileStore(t *testing.T) {
2021-12-04 08:58:16 +00:00
dir := t.TempDir()
2021-12-03 22:51:48 +00:00
s := store.NewFileSystemStore(dir)
doFileStoreTest(s, t)
}