1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

backend/internetarchive: add support for Internet Archive

This adds support for Internet Archive (archive.org) Items.
This commit is contained in:
Lesmiscore
2022-04-12 18:38:44 +09:00
committed by Nick Craig-Wood
parent 211dbe9aee
commit 598364ad0f
11 changed files with 1382 additions and 0 deletions

View File

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