mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
2e21c58e6a
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:",
|
|
})
|
|
}
|