Test Render mixin

Methods
#
R
Included Modules
Instance Public methods
_prefixes()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 35
def _prefixes
  []
end
render(options = {})
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 39
def render(options = {})
  if options.is_a?(String)
    options = {:_template_name => options}
  end
  super
end