archive_test.go 315 B

123456789101112131415161718192021
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestVideoDuration(t *testing.T) {
  8. var (
  9. aid int64 = 10097265
  10. oid int64 = 1508
  11. c = context.TODO()
  12. )
  13. Convey("", t, func() {
  14. _, err := svr.videoDuration(c, aid, oid)
  15. So(err, ShouldBeNil)
  16. })
  17. }