Methods
R
Instance Public methods
render_nothing()
# File actionpack/test/dispatch/template_assertions_test.rb, line 21
def render_nothing
  head :ok
end
render_with_file()
# File actionpack/test/dispatch/template_assertions_test.rb, line 17
def render_with_file
  render file: 'README.rdoc'
end
render_with_layout()
# File actionpack/test/dispatch/template_assertions_test.rb, line 12
def render_with_layout
  @variable_for_layout = 'hello'
  render 'test/hello_world', layout: "layouts/standard"
end
render_with_partial()
# File actionpack/test/dispatch/template_assertions_test.rb, line 4
def render_with_partial
  render partial: 'test/partial'
end
render_with_template()
# File actionpack/test/dispatch/template_assertions_test.rb, line 8
def render_with_template
  render 'test/hello_world'
end