mirror of https://github.com/restic/restic.git
25 lines
482 B
Go
25 lines
482 B
Go
package rclone
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/restic/restic/internal/backend/test"
|
|
)
|
|
|
|
var configTests = []test.ConfigTestData[Config]{
|
|
{
|
|
S: "rclone:local:foo:/bar",
|
|
Cfg: Config{
|
|
Remote: "local:foo:/bar",
|
|
Program: defaultConfig.Program,
|
|
Args: defaultConfig.Args,
|
|
Connections: defaultConfig.Connections,
|
|
Timeout: defaultConfig.Timeout,
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestParseConfig(t *testing.T) {
|
|
test.ParseConfigTester(t, ParseConfig, configTests)
|
|
}
|