class Fun::GamesController

Public Instance Methods

hello_world() click to toggle source
# File actionview/test/actionpack/controller/render_test.rb, line 32
def hello_world; end
nested_partial_with_form_builder() click to toggle source
# File actionview/test/actionpack/controller/render_test.rb, line 34
def nested_partial_with_form_builder
  render partial: ActionView::Helpers::FormBuilder.new(:post, nil, view_context, {})
end
render_hello_world() click to toggle source
# File actionpack/test/controller/helper_test.rb, line 9
def render_hello_world
  render inline: "hello: <%= stratego %>"
end