Methods
H
R
X
Instance Public methods
html()
# File actionpack/test/controller/assert_select_test.rb, line 40
def html()
  render :text=>@content, :layout=>false, :content_type=>Mime::HTML
  @content = nil
end
rescue_action(e)
# File actionpack/test/controller/assert_select_test.rb, line 50
def rescue_action(e)
  raise e
end
response_with(&block)
# File actionpack/test/controller/assert_select_test.rb, line 36
def response_with(&block)
  @update = block
end
response_with=(content)
# File actionpack/test/controller/assert_select_test.rb, line 32
def response_with=(content)
  @content = content
end
xml()
# File actionpack/test/controller/assert_select_test.rb, line 45
def xml()
  render :text=>@content, :layout=>false, :content_type=>Mime::XML
  @content = nil
end