2017-07-25 22:18:13 +08:00
|
|
|
// Test AzureBlob filesystem interface
|
2018-07-13 23:21:49 +08:00
|
|
|
|
|
|
|
// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8
|
|
|
|
|
2017-07-25 22:18:13 +08:00
|
|
|
package azureblob_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-12 00:05:41 +08:00
|
|
|
"github.com/ncw/rclone/backend/azureblob"
|
2017-07-25 22:18:13 +08:00
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
2018-04-08 01:48:11 +08: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 22:18:13 +08:00
|
|
|
}
|