如何让水豚使用路由助手
我正在使用 Rails 3、Steak &水豚。我有充足的资源,是否可以使用视图和控制器可用的路由助手?
I am using rails 3, Steak & Capybara. I have restful resources, is it possible to use routing helpers available to views and controllers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需将其放在
配置定义块内的spec_helper.rb上,即被以下内容包裹的块中:
然后您可以在功能规范中使用它:
不要使用:
因为它在rails 3中已弃用
You just have to put this on your spec_helper.rb
inside the configuration definition block, that is, the one that is wrapped by:
And then you can use it on your feature specs:
Do not use:
As it is deprecated in rails 3
我将其更改为这样以使其与 Rails 4.1.6 一起使用:
I changed it to this to get it working with Rails 4.1.6: