mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-05 00:50:49 +08:00
12 lines
178 B
Go
12 lines
178 B
Go
package douban
|
|
|
|
import (
|
|
"polaris/log"
|
|
"testing"
|
|
)
|
|
|
|
func TestParseDoulist(t *testing.T) {
|
|
r, err := ParseDoulist("https://www.douban.com/doulist/166422/")
|
|
log.Info(r, err)
|
|
}
|