aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/text_helper_test.rb
diff options
context:
space:
mode:
authorAndy Stewart <boss@airbladesoftware.com>2009-01-28 16:45:28 +0000
committerPratik Naik <pratiknaik@gmail.com>2009-05-18 20:46:19 +0200
commit5e190ef138a034bf86419ce4f4c343ae16bfc77b (patch)
treee8f8bd7d616807ad1a67038b67da2a2e404f2c61 /actionpack/test/template/text_helper_test.rb
parent195fadbfd31294d43634afb7bbf4f0ffc86b470a (diff)
downloadrails-5e190ef138a034bf86419ce4f4c343ae16bfc77b.tar.gz
rails-5e190ef138a034bf86419ce4f4c343ae16bfc77b.tar.bz2
rails-5e190ef138a034bf86419ce4f4c343ae16bfc77b.zip
Truncate helper accepts a :separator for a more legible result [#1807 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'actionpack/test/template/text_helper_test.rb')
-rw-r--r--actionpack/test/template/text_helper_test.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/test/template/text_helper_test.rb b/actionpack/test/template/text_helper_test.rb
index a780bfc606..706b5085f4 100644
--- a/actionpack/test/template/text_helper_test.rb
+++ b/actionpack/test/template/text_helper_test.rb
@@ -49,6 +49,9 @@ class TextHelperTest < ActionView::TestCase
assert_equal "This is a string that wil[...]", truncate("This is a string that will go longer then the default truncate length of 30", :omission => "[...]")
assert_equal "Hello W...", truncate("Hello World!", :length => 10)
assert_equal "Hello[...]", truncate("Hello World!", :omission => "[...]", :length => 10)
+ assert_equal "Hello[...]", truncate("Hello Big World!", :omission => "[...]", :length => 13, :separator => ' ')
+ assert_equal "Hello Big[...]", truncate("Hello Big World!", :omission => "[...]", :length => 14, :separator => ' ')
+ assert_equal "Hello Big[...]", truncate("Hello Big World!", :omission => "[...]", :length => 15, :separator => ' ')
end
if RUBY_VERSION < '1.9.0'