mirror of
https://github.com/rclone/rclone.git
synced 2024-11-09 01:55:19 +01:00
5ad8bcb43a
This change includes removing older azureblob storage SDK, and getting parity to existing code with latest blob storage SDK. This change is also pre-req for addressing #2091
21 lines
436 B
Go
21 lines
436 B
Go
// Test AzureBlob filesystem interface
|
|
|
|
// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8
|
|
|
|
package azureblob_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/backend/azureblob"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestAzureBlob:",
|
|
NilObject: (*azureblob.Object)(nil),
|
|
})
|
|
}
|