aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/functional_caching
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2012-06-09 18:54:58 +0200
committerŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-06-20 17:23:16 +0200
commitf12109448ba61c86788820615dfdd8b6bce4a39b (patch)
tree77a5013ba2eb96568f816b8f621f1ddc66948524 /actionview/test/fixtures/functional_caching
parentb01331e39291f3781b8cc07233633761fefe73bc (diff)
downloadrails-f12109448ba61c86788820615dfdd8b6bce4a39b.tar.gz
rails-f12109448ba61c86788820615dfdd8b6bce4a39b.tar.bz2
rails-f12109448ba61c86788820615dfdd8b6bce4a39b.zip
Remove unneeded test fixtures in AV
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 %>