aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-09-25 17:54:30 -0400
committerGitHub <noreply@github.com>2018-09-25 17:54:30 -0400
commit05a66686f18000a1bbc35a92fe63e18218b829a5 (patch)
tree7fc58ec7b2a33736789f856456b58841d45d1df7 /actionview
parent376ffe0ea2e59dc51461122210729c05a10fb443 (diff)
parent6f36168ecaa3fd68bfc8b5ead76e32aa8dc51252 (diff)
downloadrails-05a66686f18000a1bbc35a92fe63e18218b829a5.tar.gz
rails-05a66686f18000a1bbc35a92fe63e18218b829a5.tar.bz2
rails-05a66686f18000a1bbc35a92fe63e18218b829a5.zip
Merge pull request #33975 from JuanitoFatas/jf.fix-test-name
[CaptureHelperTest] Fix a content_for test description
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/template/capture_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/template/capture_helper_test.rb b/actionview/test/template/capture_helper_test.rb
index 3d96c81be9..e172497c88 100644
--- a/actionview/test/template/capture_helper_test.rb
+++ b/actionview/test/template/capture_helper_test.rb
@@ -40,7 +40,7 @@ class CaptureHelperTest < ActionView::TestCase
assert_equal "&lt;em&gt;bar&lt;/em&gt;", string
end
- def test_capture_used_for_read
+ def test_content_for_used_for_read
content_for :foo, "foo"
assert_equal "foo", content_for(:foo)