2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-21 02:02:21 +00:00
restic/src/restic/snapshot_test.go
2017-02-10 19:37:33 +01:00

16 lines
208 B
Go

package restic_test
import (
"testing"
"restic"
. "restic/test"
)
func TestNewSnapshot(t *testing.T) {
paths := []string{"/home/foobar"}
_, err := restic.NewSnapshot(paths, nil, "foo")
OK(t, err)
}