act_test.go 313 B

1234567891011121314151617
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestService_HotDot(t *testing.T) {
  8. Convey("test hot dot", t, WithService(func(s *Service) {
  9. mid := int64(908085)
  10. data, err := s.RedDot(context.Background(), mid)
  11. So(err, ShouldBeNil)
  12. Println(data)
  13. }))
  14. }