rclone/backend/doi/doi_test.go
Flora Thiebaut 0a0fbe965f doi: add new doi backend
Add a new backend to support mounting datasets published with a digital
object identifier (DOI).
2025-04-15 15:49:36 +02:00

17 lines
303 B
Go

// 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),
})
}