aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_label_change_test.go
blob: 2c1d8f6294689e397f560be793b906d051eeb726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package bug

import (
	"testing"

	"github.com/MichaelMure/git-bug/entity/dag"
	"github.com/MichaelMure/git-bug/identity"
)

func TestLabelChangeSerialize(t *testing.T) {
	dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *LabelChangeOperation {
		return NewLabelChangeOperation(author, unixTime, []Label{"added"}, []Label{"removed"})
	})
	dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *LabelChangeOperation {
		return NewLabelChangeOperation(author, unixTime, []Label{"added"}, nil)
	})
	dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *LabelChangeOperation {
		return NewLabelChangeOperation(author, unixTime, nil, []Label{"removed"})
	})
}