From b422cda2ebfff4032f4c18271e96ad329c413dcc Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Mon, 30 Aug 2010 10:24:02 +0200 Subject: let String#strip_heredoc handle blank lines even if they are not indented --- activesupport/test/core_ext/string_ext_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb index d64706ee10..8be65c99f2 100644 --- a/activesupport/test/core_ext/string_ext_test.rb +++ b/activesupport/test/core_ext/string_ext_test.rb @@ -33,6 +33,15 @@ class StringInflectionsTest < Test::Unit::TestCase EOS end + def test_strip_heredoc_on_a_regular_indented_heredoc_with_blank_lines + assert_equal "foo\n bar\n\nbaz\n", <<-EOS.strip_heredoc + foo + bar + + baz + EOS + end + def test_pluralize SingularToPlural.each do |singular, plural| assert_equal(plural, singular.pluralize) -- cgit v1.2.3