Methods
D
E
F
I
L
R
S
W
Instance Public methods
destroy()
Alias for: index
edit()
Alias for: index
expire()
# File actionpack/test/controller/caching_test.rb, line 286
def expire
  expire_action :controller => 'action_caching_test', :action => 'index'
  render :nothing => true
end
expire_with_url_string()
# File actionpack/test/controller/caching_test.rb, line 296
def expire_with_url_string
  expire_action url_for(:controller => 'action_caching_test', :action => 'index')
  render :nothing => true
end
expire_xml()
# File actionpack/test/controller/caching_test.rb, line 291
def expire_xml
  expire_action :controller => 'action_caching_test', :action => 'index', :format => 'xml'
  render :nothing => true
end
forbidden()
# File actionpack/test/controller/caching_test.rb, line 253
def forbidden
  render :text => "Forbidden"
  response.status = "403 Forbidden"
end
four_oh_four()
# File actionpack/test/controller/caching_test.rb, line 273
def four_oh_four
  render :text => "404'd!", :status => 404
end
index()
Also aliased as: show, edit, destroy
# File actionpack/test/controller/caching_test.rb, line 244
def index
  @cache_this = MockTime.now.to_f.to_s
  render :text => @cache_this
end
layout_false()
Alias for: with_layout
record_not_found()
# File actionpack/test/controller/caching_test.rb, line 269
def record_not_found
  raise ActiveRecord::RecordNotFound, "oops!"
end
redirected()
# File actionpack/test/controller/caching_test.rb, line 249
def redirected
  redirect_to :action => 'index'
end
show()
Alias for: index
simple_runtime_error()
# File actionpack/test/controller/caching_test.rb, line 277
def simple_runtime_error
  raise "oops!"
end
streaming()
# File actionpack/test/controller/caching_test.rb, line 301
def streaming
  render :text => "streaming", :stream => true
end
with_format_and_http_param()
# File actionpack/test/controller/caching_test.rb, line 264
def with_format_and_http_param
  @cache_this = MockTime.now.to_f.to_s
  render :text => @cache_this
end
with_layout()
Also aliased as: layout_false
# File actionpack/test/controller/caching_test.rb, line 258
def with_layout
  @cache_this = MockTime.now.to_f.to_s
  @title = nil
  render :text => @cache_this, :layout => true
end