diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-02-25 11:54:07 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-02-25 11:54:07 -0300 |
commit | 68a2a6711643db6b8b0775fe004bc0de0cdc07db (patch) | |
tree | d18132851add017e8766c533d31cac2c7e939d19 /actionview/test/fixtures | |
parent | 5a6868b6175167d91fcfaed82b4d4627281a4878 (diff) | |
parent | ca6aba7f30ad9910f17e4c5b39667889d9518794 (diff) | |
download | rails-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.erb | 3 | ||||
-rw-r--r-- | actionview/test/fixtures/test/_cached_customer_as.erb | 3 |
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 |