2021-12-03 22:51:48 +00:00
|
|
|
package store_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-01-13 17:40:15 +00:00
|
|
|
"git.t-juice.club/torjus/ezshare/store"
|
2021-12-03 22:51:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|