Implement Azure Files backend

Co-authored-by: moongdal <moongdal@tutanota.com>
This commit is contained in:
karan 2023-09-15 10:34:26 +05:30 committed by Nick Craig-Wood
parent e9763552f7
commit b5301e03a6
10 changed files with 912 additions and 0 deletions

View file

@ -0,0 +1,15 @@
package azurefiles
import (
"testing"
"github.com/rclone/rclone/fstest/fstests"
)
func TestIntegration(t *testing.T) {
var objPtr *Object
fstests.Run(t, &fstests.Opt{
RemoteName: "TestAzureFiles:",
NilObject: objPtr,
})
}