aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/functional_caching
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/fixtures/functional_caching')
-rw-r--r--actionview/test/fixtures/functional_caching/_partial.erb3
-rw-r--r--actionview/test/fixtures/functional_caching/formatted_fragment_cached.html.erb3
-rw-r--r--actionview/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder5
-rw-r--r--actionview/test/fixtures/functional_caching/fragment_cached.html.erb3
-rw-r--r--actionview/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb1
-rw-r--r--actionview/test/fixtures/functional_caching/inline_fragment_cached.html.erb2
6 files changed, 0 insertions, 17 deletions
diff --git a/actionview/test/fixtures/functional_caching/_partial.erb b/actionview/test/fixtures/functional_caching/_partial.erb
deleted file mode 100644
index ec0da7cf50..0000000000
--- a/actionview/test/fixtures/functional_caching/_partial.erb
+++ /dev/null
@@ -1,3 +0,0 @@
-<% cache do %>
-Old fragment caching in a partial
-<% end %>
diff --git a/actionview/test/fixtures/functional_caching/formatted_fragment_cached.html.erb b/actionview/test/fixtures/functional_caching/formatted_fragment_cached.html.erb
deleted file mode 100644
index 9b88fa1f5a..0000000000
--- a/actionview/test/fixtures/functional_caching/formatted_fragment_cached.html.erb
+++ /dev/null
@@ -1,3 +0,0 @@
-<body>
-<%= cache do %><p>ERB</p><% end %>
-</body>
diff --git a/actionview/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder b/actionview/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder
deleted file mode 100644
index efdcc28e0f..0000000000
--- a/actionview/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder
+++ /dev/null
@@ -1,5 +0,0 @@
-xml.body do
- cache do
- xml.p "Builder"
- end
-end
diff --git a/actionview/test/fixtures/functional_caching/fragment_cached.html.erb b/actionview/test/fixtures/functional_caching/fragment_cached.html.erb
deleted file mode 100644
index fa5e6bd318..0000000000
--- a/actionview/test/fixtures/functional_caching/fragment_cached.html.erb
+++ /dev/null
@@ -1,3 +0,0 @@
-Hello
-<%= cache do %>This bit's fragment cached<% end %>
-<%= 'Ciao' %>
diff --git a/actionview/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb b/actionview/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb
deleted file mode 100644
index a9462d3499..0000000000
--- a/actionview/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb
+++ /dev/null
@@ -1 +0,0 @@
-<%= render :partial => 'partial' %> \ No newline at end of file
diff --git a/actionview/test/fixtures/functional_caching/inline_fragment_cached.html.erb b/actionview/test/fixtures/functional_caching/inline_fragment_cached.html.erb
deleted file mode 100644
index 41647f1404..0000000000
--- a/actionview/test/fixtures/functional_caching/inline_fragment_cached.html.erb
+++ /dev/null
@@ -1,2 +0,0 @@
-<%= render :inline => 'Some inline content' %>
-<%= cache do %>Some cached content<% end %>