Methods
F
H
Instance Public methods
formatted_fragment_cached()
# File actionpack/test/controller/caching_test.rb, line 160
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 167
def formatted_fragment_cached_with_variant
  respond_to do |format|
    format.html.phone
    format.html
  end
end
fragment_cached()
# File actionpack/test/controller/caching_test.rb, line 151
def fragment_cached
end
fragment_cached_without_digest()
# File actionpack/test/controller/caching_test.rb, line 174
def fragment_cached_without_digest
end
html_fragment_cached_with_partial()
# File actionpack/test/controller/caching_test.rb, line 154
def html_fragment_cached_with_partial
  respond_to do |format|
    format.html
  end
end