audit_test.go 331 B

123456789101112131415161718192021
  1. package archive
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "testing"
  6. )
  7. func Test_VideoAuditNote(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. err error
  11. sub string
  12. )
  13. Convey("VideoAuditNote", t, func() {
  14. sub, err = d.VideoAuditNote(c, 2333)
  15. So(err, ShouldNotBeNil)
  16. So(sub, ShouldBeEmpty)
  17. })
  18. }