2017-07-25 14:18:13 +00:00
|
|
|
// Test AzureBlob filesystem interface
|
|
|
|
package azureblob_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-11 16:05:41 +00:00
|
|
|
"github.com/ncw/rclone/backend/azureblob"
|
2017-07-25 14:18:13 +00:00
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
2018-04-07 17:48:11 +00:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestAzureBlob:",
|
|
|
|
NilObject: (*azureblob.Object)(nil),
|
|
|
|
})
|
2017-07-25 14:18:13 +00:00
|
|
|
}
|