aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Lavrisha <michael.lavrisha@gmail.com>2011-07-24 16:17:40 -0600
committerMichael Lavrisha <michael.lavrisha@gmail.com>2011-07-24 16:17:40 -0600
commite3dbe66e196069fde7d3ff118bd25a03184915fa (patch)
tree9a653a398e79604980aadcc53bdf7036f241a10f
parent4b189bd33695522058d3d58430d32d041560d4d8 (diff)
downloadrails-e3dbe66e196069fde7d3ff118bd25a03184915fa.tar.gz
rails-e3dbe66e196069fde7d3ff118bd25a03184915fa.tar.bz2
rails-e3dbe66e196069fde7d3ff118bd25a03184915fa.zip
Update the TIP formatter to handle multiline tips
- includes 3 tests
-rw-r--r--railties/guides/rails_guides/textile_extensions.rb3
-rw-r--r--railties/test/guides/textile_extionsions_test.rb37
2 files changed, 39 insertions, 1 deletions
diff --git a/railties/guides/rails_guides/textile_extensions.rb b/railties/guides/rails_guides/textile_extensions.rb
index 352c5e91dd..0887ebf76b 100644
--- a/railties/guides/rails_guides/textile_extensions.rb
+++ b/railties/guides/rails_guides/textile_extensions.rb
@@ -15,10 +15,11 @@ module RailsGuides
end
def tip(body)
- body.gsub!(/^TIP[.:](.*)$/) do |m|
+ body.gsub!(/^TIP[.:](.*?)(\n\Z|\n\n+|\Z)/m) do |m|
result = "<div class='info'><p>"
result << $1.strip
result << '</p></div>'
+ result << $2 if $2
result
end
end
diff --git a/railties/test/guides/textile_extionsions_test.rb b/railties/test/guides/textile_extionsions_test.rb
new file mode 100644
index 0000000000..9f1068d9be
--- /dev/null
+++ b/railties/test/guides/textile_extionsions_test.rb
@@ -0,0 +1,37 @@
+require 'isolation/abstract_unit'
+require 'guides/rails_guides/textile_extensions'
+
+class TextileExtensionsTest < Test::Unit::TestCase
+ include ActiveSupport::Testing::Isolation
+ include RailsGuides::TextileExtensions
+
+ test "tips can handle a single line" do
+ expected_output = "<div class='info'><p>this is a single line tip</p></div>"
+ assert_equal expected_output, tip('TIP. this is a single line tip')
+ end
+
+ def setup
+ @multi_line_tip = "This is a multi-line tip.\n" +
+ "Isn't it fantastic?"
+ end
+
+ test "tips can handle a multi-line tip" do
+ expected_output = "<div class='info'><p>#{@multi_line_tip}</p></div>"
+
+ assert_equal expected_output, tip("TIP. #{@multi_line_tip}")
+ end
+
+ test "muli-line tips handles text before and after the tip" do
+ pre_line = "This is text before hand.\n\n"
+ post_line = "\n\nThis is some text after"
+ input_text = pre_line +
+ "TIP. #{@multi_line_tip}" +
+ post_line
+
+ expected_output = pre_line +
+ "<div class='info'><p>#{@multi_line_tip}</p></div>" +
+ post_line
+
+ assert_equal expected_output, tip(input_text)
+ end
+end \ No newline at end of file