restic/internal/snapshot_test.go

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