我正在使用铁杆3,牛排&水豚.我有安静的资源,是否可以使用可用于视图和控制器的路由帮助?
解决方法
你只需要把它放在你的spec_helper.rb上
config.include Rails.application.routes.url_helpers
在配置定义块内,即包装的那个:
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
因为它在铁路3中已被弃用