mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-06 17:40:46 +08:00
18 lines
300 B
Go
18 lines
300 B
Go
package douban
|
|
|
|
import (
|
|
"polaris/log"
|
|
"testing"
|
|
)
|
|
|
|
func TestParseDoulist(t *testing.T) {
|
|
r, err := ParseDoulist("https://www.douban.com/doulist/81580/")
|
|
log.Info(r, err)
|
|
}
|
|
|
|
|
|
func Test111(t *testing.T) {
|
|
d := NewDoubanWishlist("69894889")
|
|
_, err := d.GetWishlist(1)
|
|
log.Infof("err: %v", err)
|
|
} |