go-common/app/tool/saga/service/contributors_test.go
2019-04-22 18:49:16 +08:00

23 lines
489 B
Go

package service
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestServiceHandleBuildContributors(t *testing.T) {
convey.Convey("HandleBuildContributors", t, func(ctx convey.C) {
var (
c = context.Background()
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
err := s.HandleBuildContributors(c, repoTest)
ctx.Convey("Then err should be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
})
})
})
}