2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-31 16:10:49 +00:00
restic/cmd/restic/cmd_snapshots_test.go
2020-10-05 15:08:09 +02:00

19 lines
393 B
Go

package main
import (
"strings"
"testing"
rtest "github.com/restic/restic/internal/test"
)
// Regression test for #2979: no snapshots should print as [], not null.
func TestEmptySnapshotGroupJSON(t *testing.T) {
for _, grouped := range []bool{false, true} {
var w strings.Builder
printSnapshotGroupJSON(&w, nil, grouped)
rtest.Equals(t, "[]", strings.TrimSpace(w.String()))
}
}