mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
14 lines
217 B
Go
14 lines
217 B
Go
package pgc
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestService_FullRefresh(t *testing.T) {
|
|
Convey("No redundant data", t, WithService(func(s *Service) {
|
|
s.refreshCache()
|
|
}))
|
|
}
|