2014-07-24 23:50:11 +02:00
|
|
|
// Test Local filesystem interface
|
|
|
|
package local_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/backend/local"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2014-07-24 23:50:11 +02:00
|
|
|
)
|
|
|
|
|
2018-04-07 19:48:11 +02:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
2022-06-29 12:51:46 +02:00
|
|
|
RemoteName: "",
|
|
|
|
NilObject: (*local.Object)(nil),
|
|
|
|
QuickTestOK: true,
|
2018-04-07 19:48:11 +02:00
|
|
|
})
|
2014-07-24 23:50:11 +02:00
|
|
|
}
|