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