mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-10 11:40:47 +08:00
12 lines
177 B
Go
12 lines
177 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)
|
|
}
|