mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
14 lines
224 B
Go
14 lines
224 B
Go
|
|
package ugc
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestService_SearUgcCon(t *testing.T) {
|
||
|
|
Convey("search season content count", t, WithService(func(s *Service) {
|
||
|
|
s.seaUgcCont()
|
||
|
|
}))
|
||
|
|
}
|