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.
17 lines
313 B
17 lines
313 B
package like |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestService_HotDot(t *testing.T) { |
|
Convey("test hot dot", t, WithService(func(s *Service) { |
|
mid := int64(908085) |
|
data, err := s.RedDot(context.Background(), mid) |
|
So(err, ShouldBeNil) |
|
Println(data) |
|
})) |
|
}
|
|
|