mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
58f7141c96
golang.org/x/oauth2/google no longer builds on go1.8
21 lines
439 B
Go
21 lines
439 B
Go
// Test GoogleCloudStorage filesystem interface
|
|
|
|
// +build go1.9
|
|
|
|
package googlecloudstorage_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/backend/googlecloudstorage"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestGoogleCloudStorage:",
|
|
NilObject: (*googlecloudstorage.Object)(nil),
|
|
})
|
|
}
|