aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/fixtures/caching_mailer
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-05-05 16:26:47 -0500
committerRafael França <rafaelmfranca@gmail.com>2016-05-05 16:26:47 -0500
commit063bc008b3705abc7e762484efb1a3d2081910bc (patch)
treea77f6a409c0d3778b5956c5feb3d8083d2574033 /actionmailer/test/fixtures/caching_mailer
parent9c86a1804d2e658a7067eecfe5d00646a5b6b749 (diff)
parentcbb25c4b1cb96cc6e857c3c05896056ec81931bf (diff)
downloadrails-063bc008b3705abc7e762484efb1a3d2081910bc.tar.gz
rails-063bc008b3705abc7e762484efb1a3d2081910bc.tar.bz2
rails-063bc008b3705abc7e762484efb1a3d2081910bc.zip
Merge pull request #24589 from vipulnsward/am-fragment-cache
Expand on Action Mailer Fragment caching tests
Diffstat (limited to 'actionmailer/test/fixtures/caching_mailer')
-rw-r--r--actionmailer/test/fixtures/caching_mailer/fragment_caching_options.html.erb3
-rw-r--r--actionmailer/test/fixtures/caching_mailer/multipart_cache.html.erb3
-rw-r--r--actionmailer/test/fixtures/caching_mailer/multipart_cache.text.erb3
3 files changed, 9 insertions, 0 deletions
diff --git a/actionmailer/test/fixtures/caching_mailer/fragment_caching_options.html.erb b/actionmailer/test/fixtures/caching_mailer/fragment_caching_options.html.erb
new file mode 100644
index 0000000000..0541ac321b
--- /dev/null
+++ b/actionmailer/test/fixtures/caching_mailer/fragment_caching_options.html.erb
@@ -0,0 +1,3 @@
+<%= cache :no_digest, skip_digest: true, expires_in: 0 do %>
+ No Digest
+<% end %>
diff --git a/actionmailer/test/fixtures/caching_mailer/multipart_cache.html.erb b/actionmailer/test/fixtures/caching_mailer/multipart_cache.html.erb
new file mode 100644
index 0000000000..0d26baa2d7
--- /dev/null
+++ b/actionmailer/test/fixtures/caching_mailer/multipart_cache.html.erb
@@ -0,0 +1,3 @@
+<% cache :html_caching, skip_digest: true do %>
+ "Welcome html"
+<% end %>
diff --git a/actionmailer/test/fixtures/caching_mailer/multipart_cache.text.erb b/actionmailer/test/fixtures/caching_mailer/multipart_cache.text.erb
new file mode 100644
index 0000000000..ef97326e03
--- /dev/null
+++ b/actionmailer/test/fixtures/caching_mailer/multipart_cache.text.erb
@@ -0,0 +1,3 @@
+<% cache :text_caching, skip_digest: true do %>
+ "Welcome text"
+<% end %>