mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 01:34:06 +00:00
19 lines
323 B
Go
19 lines
323 B
Go
|
package local
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/restic/restic/internal/backend/test"
|
||
|
)
|
||
|
|
||
|
var configTests = []test.ConfigTestData[Config]{
|
||
|
{S: "local:/some/path", Cfg: Config{
|
||
|
Path: "/some/path",
|
||
|
Connections: 2,
|
||
|
}},
|
||
|
}
|
||
|
|
||
|
func TestParseConfig(t *testing.T) {
|
||
|
test.ParseConfigTester(t, ParseConfig, configTests)
|
||
|
}
|