1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

filefabric: Implement the Enterprise File Fabric backend

Missing features
- M-Stream support
- Oauth-like flow (soon being changed to oauth)
This commit is contained in:
Nick Craig-Wood
2020-08-11 15:09:00 +01:00
parent dfeae0e70a
commit 979bb07c86
12 changed files with 2029 additions and 0 deletions

View File

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