mirror of
https://github.com/rclone/rclone.git
synced 2025-02-08 20:02:01 +08:00
![Nick Craig-Wood](/assets/img/avatar_default.png)
This is done by making fs.Config private and attaching it to the context instead. The Config should be obtained with fs.GetConfig and fs.AddConfig should be used to get a new mutable config that can be changed.
16 lines
286 B
Go
16 lines
286 B
Go
// Test 1Fichier filesystem interface
|
|
package fichier
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestFichier:",
|
|
})
|
|
}
|