mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
16 lines
262 B
Go
16 lines
262 B
Go
package restic_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/restic/restic/internal"
|
|
. "github.com/restic/restic/internal/test"
|
|
)
|
|
|
|
func TestNewSnapshot(t *testing.T) {
|
|
paths := []string{"/home/foobar"}
|
|
|
|
_, err := restic.NewSnapshot(paths, nil, "foo")
|
|
OK(t, err)
|
|
}
|