From 061e48df26557bb0a667794df9772880846058cb Mon Sep 17 00:00:00 2001 From: Paul Nikitochkin Date: Thu, 25 Jul 2013 23:56:26 +0300 Subject: Cleanup of excerpt helper * replaced String concatenation by joining * separator has default value to '', even it is nil --- actionview/test/template/text_helper_test.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'actionview/test') diff --git a/actionview/test/template/text_helper_test.rb b/actionview/test/template/text_helper_test.rb index 1b2234f4e2..c2999fcb85 100644 --- a/actionview/test/template/text_helper_test.rb +++ b/actionview/test/template/text_helper_test.rb @@ -314,6 +314,9 @@ class TextHelperTest < ActionView::TestCase options = { :separator => "\n", :radius => 1 } assert_equal("...very\nvery long\nstring", excerpt("my very\nvery\nvery long\nstring", 'long', options)) + + assert_equal excerpt('This is a beautiful morning', 'a'), + excerpt('This is a beautiful morning', 'a', separator: nil) end def test_word_wrap -- cgit v1.2.3