class UrlHelperControllerTest::UrlHelperController

Public Instance Methods

nil_url_for() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 742
def nil_url_for
  render inline: "<%= url_for(nil) %>"
end
normalize_recall_params() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 746
def normalize_recall_params
  render inline: "<%= normalize_recall_params_path %>"
end
override_url_helper() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 754
def override_url_helper
  render inline: "<%= override_url_helper_path %>"
end
override_url_helper_path() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 758
def override_url_helper_path
  "/url_helper_controller_test/url_helper/override_url_helper/override"
end
recall_params_not_changed() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 750
def recall_params_not_changed
  render inline: "<%= url_for(action: :show_url_for) %>"
end
show() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 726
def show
  if params[:name]
    render inline: "ok"
  else
    redirect_to profile_path(params[:id])
  end
end
show_named_route() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 738
def show_named_route
  render inline: "<%= show_named_route_#{params[:kind]} %>"
end
show_url_for() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 734
def show_url_for
  render inline: "<%= url_for controller: 'url_helper_controller_test/url_helper', action: 'show_url_for' %>"
end