mirror of
https://github.com/rclone/rclone.git
synced 2025-10-06 05:47:10 +02:00
This now compiles but the link doesn't work because of https://github.com/golang/go/issues/64856
19 lines
376 B
Go
19 lines
376 B
Go
//go:build !js && !wasm
|
|
|
|
package protondrive_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/backend/protondrive"
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestProtonDrive:",
|
|
NilObject: (*protondrive.Object)(nil),
|
|
})
|
|
}
|