playurl_test.go 275 B

12345678910111213141516
  1. package service
  2. import (
  3. "fmt"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestService_Playurl(t *testing.T) {
  8. Convey("PlayURL test", t, WithService(func(s *Service) {
  9. url, err := s.Playurl(2476470)
  10. fmt.Println(url)
  11. So(err, ShouldBeNil)
  12. }))
  13. }