You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
504 B
24 lines
504 B
package dao |
|
|
|
import ( |
|
"context" |
|
"go-common/app/service/main/thumbup/model" |
|
"testing" |
|
|
|
"github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestDaoPubStatDatabus(t *testing.T) { |
|
var ( |
|
c = context.TODO() |
|
business = "archive" |
|
mid = int64(1) |
|
s = &model.Stats{} |
|
) |
|
convey.Convey("PubStatDatabus", t, func(ctx convey.C) { |
|
err := d.PubStatDatabus(c, business, mid, s, 1) |
|
ctx.Convey("Then err should be nil.", func(ctx convey.C) { |
|
ctx.So(err, convey.ShouldBeNil) |
|
}) |
|
}) |
|
}
|
|
|