2019-06-26 18:39:01 +00:00
|
|
|
// Test 1Fichier filesystem interface
|
|
|
|
package fichier
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 17:47:38 +00:00
|
|
|
"github.com/rclone/rclone/fs"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2019-06-26 18:39:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fs.Config.LogLevel = fs.LogLevelDebug
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestFichier:",
|
|
|
|
})
|
|
|
|
}
|