summaryrefslogtreecommitdiff
path: root/spec/support/helpers/routes_helpers.rb
blob: c412960641820446a9aff012f5126cb8a26ed9b7 (plain)
1
2
3
4
5
6
7
module RoutesHelpers
  def fake_routes(&block)
    @routes = @routes.dup
    @routes.formatter.clear
    ActionDispatch::Routing::Mapper.new(@routes).instance_exec(&block)
  end
end