如何让水豚使用路由助手

发布于 2024-10-07 05:20:00 字数 63 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

二手情话 2024-10-14 05:20:00

您只需将其放在

config.include Rails.application.routes.url_helpers

配置定义块内的spec_helper.rb上,即被以下内容包裹的块中:

RSpec.configure do |config|
# All your config.include calls go here.
end

然后您可以在功能规范中使用它:

scenario "Show school" do
school = School.create!(:name => "Pablo de Olavide")
visit(school_path(school))
save_and_open_page
page.has_content?("Pablo de Olavide").should == true
end

不要使用:

include ActionController::UrlWrite

因为它在rails 3中已弃用

You just have to put this on your spec_helper.rb

config.include Rails.application.routes.url_helpers

inside the configuration definition block, that is, the one that is wrapped by:

RSpec.configure do |config|
# All your config.include calls go here.
end

And then you can use it on your feature specs:

scenario "Show school" do
school = School.create!(:name => "Pablo de Olavide")
visit(school_path(school))
save_and_open_page
page.has_content?("Pablo de Olavide").should == true
end

Do not use:

include ActionController::UrlWrite

As it is deprecated in rails 3

吖咩 2024-10-14 05:20:00

我将其更改为这样以使其与 Rails 4.1.6 一起使用:

config.include Rails.application.routes.url_helpers if defined? Rails

I changed it to this to get it working with Rails 4.1.6:

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