restic/internal/restic/snapshot_test.go
2017-07-24 17:43:32 +02:00

15 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)
}