2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-28 06:29:01 +00:00
restic/src/restic/snapshot_test.go

16 lines
208 B
Go
Raw Normal View History

2014-12-05 20:45:49 +00:00
package restic_test
2014-08-04 18:47:04 +00:00
import (
"testing"
"restic"
. "restic/test"
2014-08-04 18:47:04 +00:00
)
func TestNewSnapshot(t *testing.T) {
paths := []string{"/home/foobar"}
2017-02-10 18:37:33 +00:00
_, err := restic.NewSnapshot(paths, nil, "foo")
OK(t, err)
2014-08-04 18:47:04 +00:00
}