class FunctionalCachingController

Public Instance Methods

formatted_fragment_cached() click to toggle source
# File actionpack/test/controller/caching_test.rb, line 176
def formatted_fragment_cached
  respond_to do |format|
    format.html
    format.xml
  end
end
formatted_fragment_cached_with_variant() click to toggle source
# File actionpack/test/controller/caching_test.rb, line 183
def formatted_fragment_cached_with_variant
  request.variant = :phone if params[:v] == "phone"

  respond_to do |format|
    format.html.phone
    format.html
  end
end
fragment_cached() click to toggle source
# File actionpack/test/controller/caching_test.rb, line 167
def fragment_cached
end
fragment_cached_with_options() click to toggle source
# File actionpack/test/controller/caching_test.rb, line 195
def fragment_cached_with_options
end
fragment_cached_without_digest() click to toggle source
# File actionpack/test/controller/caching_test.rb, line 192
def fragment_cached_without_digest
end
html_fragment_cached_with_partial() click to toggle source
# File actionpack/test/controller/caching_test.rb, line 170
def html_fragment_cached_with_partial
  respond_to do |format|
    format.html
  end
end