1package fs23import (4 "os"5 "testing"67 "github.com/foxcpp/maddy/framework/module"8 "github.com/foxcpp/maddy/internal/storage/blob"9 "github.com/foxcpp/maddy/internal/testutils"10)1112func TestFS(t *testing.T) {13 blob.TestStore(t, func() module.BlobStore {14 dir := testutils.Dir(t)15 return &FSStore{instName: "test", root: dir}16 }, func(store module.BlobStore) {17 os.RemoveAll(store.(*FSStore).root)18 })19}