From 1b93da3262de157e7a1339b1b4ce3ff5c22081a5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 20 Mar 2005 15:03:32 +0000 Subject: Added TextHelper#simple_format as a non-dependency text presentation helper.Fixed TextHelper#markdown to use blank? instead of empty? so it can deal with nil strings passed #814 [Johan Sorensen] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@933 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/text_helper_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'actionpack/test/template/text_helper_test.rb') diff --git a/actionpack/test/template/text_helper_test.rb b/actionpack/test/template/text_helper_test.rb index aba0d99699..efc66b3bd1 100644 --- a/actionpack/test/template/text_helper_test.rb +++ b/actionpack/test/template/text_helper_test.rb @@ -3,6 +3,12 @@ require File.dirname(__FILE__) + '/../../lib/action_view/helpers/text_helper' class TextHelperTest < Test::Unit::TestCase include ActionView::Helpers::TextHelper + + def test_simple_format + assert_equal "

crazy\n
cross\n
platform linebreaks

", simple_format("crazy\r\n cross\r platform linebreaks") + assert_equal "

A paragraph

\n\n

and another one!

", simple_format("A paragraph\n\nand another one!") + assert_equal "

A paragraph\n
With a newline

", simple_format("A paragraph\n With a newline") + end def test_truncate assert_equal "Hello World!", truncate("Hello World!", 12) -- cgit v1.2.3