Revert "Merge pull request #466 from Shopify/remove-expression-cache"

This reverts commit d9ae36ec40, reversing
changes made to 2da9d49478.
This commit is contained in:
Florian Weingarten
2014-11-07 01:48:51 +00:00
parent 9c33e9601b
commit 475ea51f1f
12 changed files with 123 additions and 127 deletions
+5 -5
View File
@@ -89,7 +89,7 @@ class RenderProfilingTest < Minitest::Test
include_node = t.profiler[1]
include_node.children.each do |child|
assert_equal "a_template", child.partial
assert_equal "'a_template'", child.partial
end
end
@@ -99,12 +99,12 @@ class RenderProfilingTest < Minitest::Test
a_template = t.profiler[1]
a_template.children.each do |child|
assert_equal "a_template", child.partial
assert_equal "'a_template'", child.partial
end
b_template = t.profiler[2]
b_template.children.each do |child|
assert_equal "b_template", child.partial
assert_equal "'b_template'", child.partial
end
end
@@ -114,12 +114,12 @@ class RenderProfilingTest < Minitest::Test
a_template1 = t.profiler[1]
a_template1.children.each do |child|
assert_equal "a_template", child.partial
assert_equal "'a_template'", child.partial
end
a_template2 = t.profiler[2]
a_template2.children.each do |child|
assert_equal "a_template", child.partial
assert_equal "'a_template'", child.partial
end
end