mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
20 lines
723 B
Go
20 lines
723 B
Go
package bug
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/MichaelMure/git-bug/entities/identity"
|
|
"github.com/MichaelMure/git-bug/entity"
|
|
"github.com/MichaelMure/git-bug/entity/dag"
|
|
"github.com/MichaelMure/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
|
|
})
|
|
}
|