1234567891011121314151617181920212223242526 |
- package web
- import (
- "context"
- "testing"
- "go-common/app/job/main/web-goblin/model/web"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestService_UgcIncrement(t *testing.T) {
- Convey("test UgcIncrement", t, WithService(func(s *Service) {
- var (
- err error
- ctx = context.Background()
- v = &web.ArcMsg{
- Action: "add",
- Table: "archive",
- New: nil,
- }
- )
- err = s.UgcIncrement(ctx, v)
- So(err, ShouldBeNil)
- }))
- }
|