2017-09-19 15:09:43 +00:00
|
|
|
// Test Pcloud filesystem interface
|
|
|
|
package pcloud_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 17:47:38 +00:00
|
|
|
"github.com/rclone/rclone/backend/pcloud"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2017-09-19 15:09:43 +00:00
|
|
|
)
|
|
|
|
|
2018-04-07 17:48:11 +00:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestPcloud:",
|
|
|
|
NilObject: (*pcloud.Object)(nil),
|
|
|
|
})
|
2017-09-19 15:09:43 +00:00
|
|
|
}
|