2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-20 17:52:23 +00:00
restic/internal/restic/snapshot_test.go
2017-07-24 17:43:32 +02:00

16 lines
269 B
Go

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