Methods
F
H
Instance Public methods
formatted_fragment_cached()
# File actionpack/test/controller/caching_test.rb, line 157
def formatted_fragment_cached
  respond_to do |format|
    format.html
    format.xml
  end
end
formatted_fragment_cached_with_variant()
# File actionpack/test/controller/caching_test.rb, line 164
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()
# File actionpack/test/controller/caching_test.rb, line 148
def fragment_cached
end
fragment_cached_with_options()
# File actionpack/test/controller/caching_test.rb, line 176
def fragment_cached_with_options
end
fragment_cached_without_digest()
# File actionpack/test/controller/caching_test.rb, line 173
def fragment_cached_without_digest
end
html_fragment_cached_with_partial()
# File actionpack/test/controller/caching_test.rb, line 151
def html_fragment_cached_with_partial
  respond_to do |format|
    format.html
  end
end