doi: add new doi backend

Add a new backend to support mounting datasets published with a digital
object identifier (DOI).
This commit is contained in:
Flora Thiebaut
2025-06-05 17:40:54 +02:00
committed by GitHub
parent 51fd697c7a
commit 3b3096c940
13 changed files with 1652 additions and 0 deletions

16
backend/doi/doi_test.go Normal file
View File

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