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.
22 lines
450 B
22 lines
450 B
package service |
|
|
|
import ( |
|
"testing" |
|
"time" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func Test_HTTPClient(t *testing.T) { |
|
Convey("growup-job HttpClient", t, WithService(func(s *Service) { |
|
var ( |
|
method = "GET" |
|
url = "" |
|
params = make(map[string]string) |
|
nowTime = time.Now().Add(-24 * time.Hour).Unix() |
|
) |
|
res, err := s.HTTPClient(method, url, params, nowTime) |
|
So(err, ShouldBeNil) |
|
So(res, ShouldNotBeEmpty) |
|
})) |
|
}
|
|
|