Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package ugc
import (
"testing"
"go-common/app/job/main/tv/model/ugc"
. "github.com/smartystreets/goconvey/convey"
)
func TestService_SyncLic(t *testing.T) {
Convey("TestService_SyncLic", t, WithService(func(s *Service) {
err := s.syncLic(10099174, &ugc.SimpleArc{
AID: 10099174,
Title: "test",
Duration: 400,
Cover: "testCover",
})
So(err, ShouldBeNil)
}))
}