mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
118a8b949e
Implemented a Koofr REST API backend. Added said backend to tests. Added documentation for said backend.
15 lines
246 B
Go
15 lines
246 B
Go
package koofr_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestKoofr:",
|
|
})
|
|
}
|