测试使用run saga在redux-saga中生效

时间:2019-01-10 01:40:48

标签: redux redux-saga

我有这样的redux传奇

'

我想测试是否在调用UserTypeKeys.SET_AUTHENTICATION_STATUS时调用了fetchAuthenticationStatus函数。

所以在我的redux测试中,我有这个。

from lxml import html
import requests

page = requests.get('https://Too-Simple-Site--ariari.repl.co/index.html')
tree = html.fromstring(page.content)

hello = tree.xpath('//div[@title="buyer-name"]/text()')

for char in hello: 
  print (char, end='')

但是,这似乎不起作用。测试这样的东西的正确方法是什么?我知道我可以调用生成器函数并检查.next()的值,但这似乎很像测试实现而不是功能。

0 个答案:

没有答案