You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
542 B
25 lines
542 B
package service |
|
|
|
import ( |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestService_ComConfigsByTagID(t *testing.T) { |
|
svr := svr(t) |
|
Convey("should app by name", t, func() { |
|
res, err := svr.ConfigsByTagID(1) |
|
So(err, ShouldBeNil) |
|
So(res, ShouldNotBeEmpty) |
|
}) |
|
} |
|
|
|
func TestService_ComConfigsByTeam(t *testing.T) { |
|
svr := svr(t) |
|
Convey("should get common config by team", t, func() { |
|
res, err := svr.ComConfigsByTeam("main.common-arch", "dev", "shd", 1, 1) |
|
So(err, ShouldBeNil) |
|
So(res, ShouldNotBeEmpty) |
|
}) |
|
}
|
|
|