1
mirror of https://github.com/rclone/rclone synced 2025-02-28 23:53:04 +01:00
rclone/backend/googlecloudstorage/googlecloudstorage_test.go

19 lines
428 B
Go
Raw Normal View History

// Test GoogleCloudStorage filesystem interface
package googlecloudstorage_test
import (
"testing"
"github.com/rclone/rclone/backend/googlecloudstorage"
"github.com/rclone/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),
})
}