2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-02 09:00:50 +00:00
restic/src/restic/snapshot_test.go
2016-09-13 20:12:55 +02:00

16 lines
201 B
Go

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