banner_test.go 284 B

123456789101112131415
  1. package feed
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_banners(t *testing.T) {
  8. Convey("should get banners", t, func() {
  9. _, _, err := s.banners(context.Background(), 1, 2, 3, "", "", "", "", "", "", "")
  10. So(err, ShouldBeNil)
  11. })
  12. }