go-common/app/job/main/videoup-report/dao/archive/audit_test.go

22 lines
331 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
})
}