There's no documentation for this item.
Source Code
# File action_mailer/vendor/text-format-0.6.3/text/format.rb, line 1338 def test_text assert_nothing_raised { @format_o = Text::Format.new } assert_equal([], @format_o.text) assert_nothing_raised { @format_o.text = "Test Text" } assert_equal("Test Text", @format_o.text) assert_nothing_raised { @format_o.text = ["Line 1", "Line 2"] } assert_equal(["Line 1", "Line 2"], @format_o.text) end
<code/>and<pre/>for code samples.