up_info_video_test.go 244 B

123456789101112131415
  1. package income
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_Ups(t *testing.T) {
  8. Convey("Ups", t, func() {
  9. _, _, err := d.Ups(context.Background(), "video", 0, 2000)
  10. So(err, ShouldBeNil)
  11. })
  12. }