mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
dde4dd0198
This was started by Fionera, finished off by Laura with fixes and more docs from Nick. Co-authored-by: Fionera <fionera@fionera.de> Co-authored-by: Nick Craig-Wood <nick@craig-wood.com>
18 lines
350 B
Go
18 lines
350 B
Go
// Test 1Fichier filesystem interface
|
|
package fichier
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fs.Config.LogLevel = fs.LogLevelDebug
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestFichier:",
|
|
})
|
|
}
|