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

imagekit: Added ImageKit backend

This commit is contained in:
Abhinav Dhiman
2023-11-24 23:48:01 +05:30
committed by GitHub
parent fd2322cb41
commit 36eb3cd660
13 changed files with 1738 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package imagekit
import (
"testing"
"github.com/rclone/rclone/fstest"
"github.com/rclone/rclone/fstest/fstests"
)
func TestIntegration(t *testing.T) {
debug := true
fstest.Verbose = &debug
fstests.Run(t, &fstests.Opt{
RemoteName: "TestImageKit:",
NilObject: (*Object)(nil),
SkipFsCheckWrap: true,
})
}