mirror of
https://github.com/rclone/rclone.git
synced 2025-04-19 10:08:56 +08:00

Add a new backend to support mounting datasets published with a digital object identifier (DOI).
17 lines
303 B
Go
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),
|
|
})
|
|
}
|