aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/functional_caching
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2016-01-29 00:14:26 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2016-01-29 00:15:19 -0500
commitf16709231de2df863949e8e99a5b0fe22695fd15 (patch)
tree1900af2c47131c27c6559a6293ca10d0c073dc2a /actionpack/test/fixtures/functional_caching
parentc3c92fb5e572debc62539137ad5fe158bd978b7e (diff)
parent837e40dcac023319a0bfc38240761d4352b73b99 (diff)
downloadrails-f16709231de2df863949e8e99a5b0fe22695fd15.tar.gz
rails-f16709231de2df863949e8e99a5b0fe22695fd15.tar.bz2
rails-f16709231de2df863949e8e99a5b0fe22695fd15.zip
Merge pull request #22800 from dgynn/pr_cache_helper_options
Restore ability to pass extra options to cache stores
Diffstat (limited to 'actionpack/test/fixtures/functional_caching')
-rw-r--r--actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb b/actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb
new file mode 100644
index 0000000000..01453323ef
--- /dev/null
+++ b/actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb
@@ -0,0 +1,3 @@
+<body>
+<%= cache 'with_options', skip_digest: true, expires_in: 1.minute do %><p>ERB</p><% end %>
+</body>