forked from TrueCloudLab/rclone
16 lines
235 B
Go
16 lines
235 B
Go
|
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,
|
||
|
})
|
||
|
}
|