index_test.go 315 B

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