You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
331 B
21 lines
331 B
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) |
|
}) |
|
}
|
|
|