Methods
C
I
R
S
Class Public methods
controller_path()
# File rails/actionpack/test/template/url_helper_test.rb, line 313
def self.controller_path; 'tasks' end
Instance Public methods
index()
# File rails/actionpack/test/template/url_helper_test.rb, line 315
def index
  render_default
end
rescue_action(e)
# File rails/actionpack/test/template/url_helper_test.rb, line 323
def rescue_action(e) raise e end
show()
# File rails/actionpack/test/template/url_helper_test.rb, line 319
def show
  render_default
end
Instance Protected methods
render_default()
# File rails/actionpack/test/template/url_helper_test.rb, line 326
def render_default
  render :inline =>
    "<%= link_to_unless_current(\"tasks\", tasks_path) %>\n" +
    "<%= link_to_unless_current(\"tasks\", tasks_url) %>"
end