2016-09-04 10:52:43 +00:00
|
|
|
package archiver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"restic"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestSnapshot creates a new snapshot of path.
|
|
|
|
func TestSnapshot(t testing.TB, repo restic.Repository, path string, parent *restic.ID) *restic.Snapshot {
|
|
|
|
arch := New(repo)
|
2017-02-10 18:37:33 +00:00
|
|
|
sn, _, err := arch.Snapshot(nil, []string{path}, []string{"test"}, "localhost", parent)
|
2016-09-04 10:52:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return sn
|
|
|
|
}
|