aboutsummaryrefslogblamecommitdiffstats
path: root/entities/bug/op_add_comment_test.go
blob: 901ed6f1ed384adb9b61ec4a0c58f95474a8019c (plain) (tree)
1
2
3
4
5
6
7
8
9


           
                 
 



                                                      


                                            

                                                                                                                                                      
          

                                                                                                                                                      
          
 
package bug

import (
	"testing"

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

func TestAddCommentSerialize(t *testing.T) {
	dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*AddCommentOperation, entity.Resolvers) {
		return NewAddCommentOp(author, unixTime, "message", nil), nil
	})
	dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*AddCommentOperation, entity.Resolvers) {
		return NewAddCommentOp(author, unixTime, "message", []repository.Hash{"hash1", "hash2"}), nil
	})
}