protondrive: add protondrive backend - fixes #6072

This commit is contained in:
Chun-Hung Tseng 2023-07-22 11:46:21 +02:00 committed by GitHub
parent 33fec9c835
commit 014acc902d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 1373 additions and 45 deletions

View file

@ -0,0 +1,16 @@
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),
})
}