Methods
N
O
R
S
Instance Public methods
nil_url_for()
# File actionview/test/template/url_helper_test.rb, line 687
def nil_url_for
  render inline: '<%= url_for(nil) %>'
end
normalize_recall_params()
# File actionview/test/template/url_helper_test.rb, line 691
def normalize_recall_params
  render inline: '<%= normalize_recall_params_path %>'
end
override_url_helper()
# File actionview/test/template/url_helper_test.rb, line 699
def override_url_helper
  render inline: '<%= override_url_helper_path %>'
end
override_url_helper_path()
# File actionview/test/template/url_helper_test.rb, line 703
def override_url_helper_path
  '/url_helper_controller_test/url_helper/override_url_helper/override'
end
recall_params_not_changed()
# File actionview/test/template/url_helper_test.rb, line 695
def recall_params_not_changed
  render inline: '<%= url_for(action: :show_url_for) %>'
end
show()
# File actionview/test/template/url_helper_test.rb, line 671
def show
  if params[:name]
    render inline: 'ok'
  else
    redirect_to profile_path(params[:id])
  end
end
show_named_route()
# File actionview/test/template/url_helper_test.rb, line 683
def show_named_route
  render inline: "<%= show_named_route_#{params[:kind]} %>"
end
show_url_for()
# File actionview/test/template/url_helper_test.rb, line 679
def show_url_for
  render inline: "<%= url_for controller: 'url_helper_controller_test/url_helper', action: 'show_url_for' %>"
end