upper_test.go 286 B

12345678910111213141516
  1. package feed
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_UpperFeed(t *testing.T) {
  9. Convey("should get UpperFeed", t, func() {
  10. uf, _ := s.UpperFeed(context.Background(), 1, 2, 3, 4, 5, time.Now())
  11. So(uf, ShouldNotBeNil)
  12. })
  13. }