2014-12-05 20:45:49 +00:00
|
|
|
package restic_test
|
2014-08-04 18:47:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-02-14 14:29:28 +00:00
|
|
|
"restic"
|
|
|
|
. "restic/test"
|
2014-08-04 18:47:04 +00:00
|
|
|
)
|
|
|
|
|
2015-04-30 00:59:06 +00:00
|
|
|
func TestNewSnapshot(t *testing.T) {
|
|
|
|
paths := []string{"/home/foobar"}
|
|
|
|
|
2017-02-10 18:37:33 +00:00
|
|
|
_, err := restic.NewSnapshot(paths, nil, "foo")
|
2015-04-30 00:59:06 +00:00
|
|
|
OK(t, err)
|
2014-08-04 18:47:04 +00:00
|
|
|
}
|