aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/text_helper_test.rb
diff options
context:
space:
mode:
authorLyle Mullican <ldmullican@gmail.com>2018-11-19 17:16:34 -0500
committerLyle Mullican <ldmullican@gmail.com>2018-11-19 17:16:34 -0500
commit4fdc6269b669a8bab7ef4af53868356f6c47f9f5 (patch)
tree9dc476157badb90fc7bf3a7582064531a61bfd37 /actionview/test/template/text_helper_test.rb
parentc4720a25ed8738095bd8e441c1406a7a7471d904 (diff)
downloadrails-4fdc6269b669a8bab7ef4af53868356f6c47f9f5.tar.gz
rails-4fdc6269b669a8bab7ef4af53868356f6c47f9f5.tar.bz2
rails-4fdc6269b669a8bab7ef4af53868356f6c47f9f5.zip
Prevent TextHelper#word_wrap from stripping white space on the left
side of long lines; Fixes #34487
Diffstat (limited to 'actionview/test/template/text_helper_test.rb')
-rw-r--r--actionview/test/template/text_helper_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionview/test/template/text_helper_test.rb b/actionview/test/template/text_helper_test.rb
index 2925489f5d..e961a770e6 100644
--- a/actionview/test/template/text_helper_test.rb
+++ b/actionview/test/template/text_helper_test.rb
@@ -361,6 +361,10 @@ class TextHelperTest < ActionView::TestCase
assert_equal("my very very\nvery long\nstring\n\nwith another\nline", word_wrap("my very very very long string\n\nwith another line", line_width: 15))
end
+ def test_word_wrap_with_leading_spaces
+ assert_equal(" This is a paragraph\nthat includes some\nindented lines:\n Like this sample\n blockquote", word_wrap(" This is a paragraph that includes some\nindented lines:\n Like this sample\n blockquote", line_width: 25))
+ end
+
def test_word_wrap_does_not_modify_the_options_hash
options = { line_width: 15 }
passed_options = options.dup