2014-07-27 00:18:29 +08:00
|
|
|
// Test GoogleCloudStorage filesystem interface
|
2014-07-25 05:50:11 +08:00
|
|
|
package googlecloudstorage_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-12 00:05:41 +08:00
|
|
|
"github.com/ncw/rclone/backend/googlecloudstorage"
|
2014-07-25 05:50:11 +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: "TestGoogleCloudStorage:",
|
|
|
|
NilObject: (*googlecloudstorage.Object)(nil),
|
|
|
|
})
|
2014-07-25 05:50:11 +08:00
|
|
|
}
|