aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-25 11:54:07 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-25 11:54:07 -0300
commit68a2a6711643db6b8b0775fe004bc0de0cdc07db (patch)
treed18132851add017e8766c533d31cac2c7e939d19 /actionview/test/fixtures
parent5a6868b6175167d91fcfaed82b4d4627281a4878 (diff)
parentca6aba7f30ad9910f17e4c5b39667889d9518794 (diff)
downloadrails-68a2a6711643db6b8b0775fe004bc0de0cdc07db.tar.gz
rails-68a2a6711643db6b8b0775fe004bc0de0cdc07db.tar.bz2
rails-68a2a6711643db6b8b0775fe004bc0de0cdc07db.zip
Merge pull request #18948 from kaspth/automatic-collection-caching
Merge multi_fetch_fragments.
Diffstat (limited to 'actionview/test/fixtures')
-rw-r--r--actionview/test/fixtures/test/_cached_customer.erb3
-rw-r--r--actionview/test/fixtures/test/_cached_customer_as.erb3
2 files changed, 6 insertions, 0 deletions
diff --git a/actionview/test/fixtures/test/_cached_customer.erb b/actionview/test/fixtures/test/_cached_customer.erb
new file mode 100644
index 0000000000..52f35a3497
--- /dev/null
+++ b/actionview/test/fixtures/test/_cached_customer.erb
@@ -0,0 +1,3 @@
+<% cache cached_customer do %>
+ Hello: <%= cached_customer.name %>
+<% end %> \ No newline at end of file
diff --git a/actionview/test/fixtures/test/_cached_customer_as.erb b/actionview/test/fixtures/test/_cached_customer_as.erb
new file mode 100644
index 0000000000..fca8d19e34
--- /dev/null
+++ b/actionview/test/fixtures/test/_cached_customer_as.erb
@@ -0,0 +1,3 @@
+<% cache buyer do %>
+ <%= greeting %>: <%= customer.name %>
+<% end %> \ No newline at end of file