go-common/app/admin/main/config/service/build_test.go

26 lines
514 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package service
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestService_BuildsByAppName(t *testing.T) {
svr := svr(t)
Convey("should app by name", t, func() {
res, err := svr.Builds(2888, "main.common-arch.msm-service", "dev", "sh001")
So(err, ShouldBeNil)
So(res, ShouldNotBeEmpty)
})
}
func TestService_BuildByID(t *testing.T) {
svr := svr(t)
Convey("should app by name", t, func() {
res, err := svr.Build(1)
So(err, ShouldBeNil)
So(res, ShouldNotBeEmpty)
})
}