go-common/app/interface/main/videoup/dao/subtitle/subtitle_test.go
2019-04-22 18:49:16 +08:00

26 lines
501 B
Go

package subtitle
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestSubtitleUpdate(t *testing.T) {
convey.Convey("Update", t, func(ctx convey.C) {
var (
c = context.Background()
aid = int64(10110826)
open bool
lan = ""
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
err := d.Update(c, aid, open, lan)
ctx.Convey("Then err should be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
})
})
})
}