New backend: Jottacloud

This commit is contained in:
Sebastian Bünger
2018-08-02 01:02:35 +02:00
committed by Nick Craig-Wood
parent 05bec70c3e
commit 10ed455777
7 changed files with 1226 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// Test Box filesystem interface
package jottacloud_test
import (
"testing"
"github.com/ncw/rclone/backend/jottacloud"
"github.com/ncw/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestJottacloud:",
NilObject: (*jottacloud.Object)(nil),
})
}