Files
go-common/app/interface/main/app-feed/service/feed/index_test.go
2019-04-22 18:49:16 +08:00

17 lines
315 B
Go

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