14 lines
128 B
Go
14 lines
128 B
Go
package crawler
|
|
|
|
import "testing"
|
|
|
|
func TestList(t *testing.T) {
|
|
|
|
cs := NewCrawlerService()
|
|
|
|
out := cs.List()
|
|
|
|
|
|
t.Log(out)
|
|
|
|
} |