backend: add Linkbox backend
Add backend for linkbox.io with read and write capabilities fixes #6960 #6629
This commit is contained in:
parent
168d577297
commit
a466ababd0
11 changed files with 1011 additions and 0 deletions
17
backend/linkbox/linkbox_test.go
Normal file
17
backend/linkbox/linkbox_test.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Test Linkbox filesystem interface
|
||||
package linkbox_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/rclone/rclone/backend/linkbox"
|
||||
"github.com/rclone/rclone/fstest/fstests"
|
||||
)
|
||||
|
||||
// TestIntegration runs integration tests against the remote
|
||||
func TestIntegration(t *testing.T) {
|
||||
fstests.Run(t, &fstests.Opt{
|
||||
RemoteName: "TestLinkbox:",
|
||||
NilObject: (*linkbox.Object)(nil),
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue