mirror of https://github.com/scrapy/scrapy.git
Use toscrape.com instead of example.com in test_command_check. (#5407)
This commit is contained in:
parent
e2e2ffd0d1
commit
5d7c0a5f86
|
|
@ -19,11 +19,11 @@ import scrapy
|
|||
|
||||
class CheckSpider(scrapy.Spider):
|
||||
name = '{self.spider_name}'
|
||||
start_urls = ['http://example.com']
|
||||
start_urls = ['http://toscrape.com']
|
||||
|
||||
def parse(self, response, **cb_kwargs):
|
||||
\"\"\"
|
||||
@url http://example.com
|
||||
@url http://toscrape.com
|
||||
{contracts}
|
||||
\"\"\"
|
||||
{parse_def}
|
||||
|
|
|
|||
Loading…
Reference in New Issue