2018-08-01 23:02:35 +00:00
|
|
|
// Test Box filesystem interface
|
|
|
|
package jottacloud_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 17:47:38 +00:00
|
|
|
"github.com/rclone/rclone/backend/jottacloud"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2018-08-01 23:02:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestJottacloud:",
|
|
|
|
NilObject: (*jottacloud.Object)(nil),
|
|
|
|
})
|
|
|
|
}
|