Cucumber 因“未定义的方法渲染”而失败

发布于 2025-01-02 18:57:24 字数 477 浏览 1 评论 0原文

我有一个 link_tag 视图,它将呈现的内容添加到页面

link_to("add",nil,:id=>"create_row_cycle",:onclick=>"$('div#cycle_form table').append('#{escape_javascript(render(:partial=>'cycles', :object=>Cycle.new))}');return false;", :href=>"")

我想测试黄瓜中的代码,并且黄瓜失败了该方法 RENDER undefined。

我的步骤是

find('div#cycle_form table').text.should have_content(render(:partial=>'cycles', :object=>Cycle.new))

请帮助,我如何用黄瓜测试这个?

I have a link_tag in view which add rendered content to page

link_to("add",nil,:id=>"create_row_cycle",:onclick=>"$('div#cycle_form table').append('#{escape_javascript(render(:partial=>'cycles', :object=>Cycle.new))}');return false;", :href=>"")

I want to test that code in cucumber and cucumber fails that method RENDER undefined.

my step is

find('div#cycle_form table').text.should have_content(render(:partial=>'cycles', :object=>Cycle.new))

Help please, how can I test this with cucumber?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み格子的夏天 2025-01-09 18:57:24

Cucumber 不理解请求的“渲染”部分 - 您想要做的是找到“循环”部分中存在的一些内容并检查它。例如,如果您的“cycles”部分包含文本“Here are the Cycles for object <%= object.name %>”,那么您的黄瓜测试将类似于

find('div#cycle_form table').text.should have_content("Here are the cycles for object #{object.name}")

这样,您可以确保您的 Cycles 部分是正确渲染。

Cucumber doesn't understand the "render" part of the request - what you'd want to do is find some content that exists in the "cycles" partial and check for that. For example, if your "cycles" partial contained the text "Here are the cycles for object <%= object.name %>", then your cucumber test would look like

find('div#cycle_form table').text.should have_content("Here are the cycles for object #{object.name}")

In that way, you can ensure that your cycles partial is rendering correctly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文