pikpak: new backend

Fixes #6429
This commit is contained in:
wiserain
2023-04-05 00:33:48 +09:00
committed by GitHub
parent 64cf9ac911
commit 243bcc9d07
13 changed files with 2849 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Test PikPak filesystem interface
package pikpak_test
import (
"testing"
"github.com/rclone/rclone/backend/pikpak"
"github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestPikPak:",
NilObject: (*pikpak.Object)(nil),
})
}