龙卷风测试主题文件是如此简单,我不太清楚如何对龙卷风进行单元测试。那样:
这是api.py:
.html.erb
和test_tornado.py:
<%= image_tag "image.jpg" %>
即使这是一个非常简单的例子,我也得到599错误。请帮帮我。
答案 0 :(得分:3)
response = self.fetch(self.get_url(&#39; /&#39;),method =&#39; GET&#39;)
self.fetch()
为您致电self.get_url
。可以self.fetch('/')
或self.http_client.fetch(self.get_url('/'))
,但不要将两者混合。
在测试中也不能通过debug=True
;自动重载会在单元测试环境中做错事。