overdue
This commit is contained in:
1281
.rclone_repo/backend/azureblob/azureblob.go
Executable file
1281
.rclone_repo/backend/azureblob/azureblob.go
Executable file
File diff suppressed because it is too large
Load Diff
20
.rclone_repo/backend/azureblob/azureblob_test.go
Executable file
20
.rclone_repo/backend/azureblob/azureblob_test.go
Executable file
@@ -0,0 +1,20 @@
|
||||
// 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),
|
||||
})
|
||||
}
|
||||
6
.rclone_repo/backend/azureblob/azureblob_unsupported.go
Executable file
6
.rclone_repo/backend/azureblob/azureblob_unsupported.go
Executable file
@@ -0,0 +1,6 @@
|
||||
// Build for azureblob for unsupported platforms to stop go complaining
|
||||
// about "no buildable Go source files "
|
||||
|
||||
// +build freebsd netbsd openbsd plan9 solaris !go1.8
|
||||
|
||||
package azureblob
|
||||
Reference in New Issue
Block a user