mirror of
https://github.com/rclone/rclone.git
synced 2025-11-23 21:44:49 +02:00
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),
|
||
|
|
})
|
||
|
|
}
|