go-common/app/job/main/videoup-report/dao/archive/audit_test.go
2019-04-22 18:49:16 +08:00

22 lines
331 B
Go

package archive
import (
"context"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func Test_VideoAuditNote(t *testing.T) {
var (
c = context.TODO()
err error
sub string
)
Convey("VideoAuditNote", t, func() {
sub, err = d.VideoAuditNote(c, 2333)
So(err, ShouldNotBeNil)
So(sub, ShouldBeEmpty)
})
}