There's no documentation for this item.
Source Code
# File action_mailer/vendor/text-format-0.6.3/text/format.rb, line 1289 def test_right_fill? assert_nothing_raised { @format_o = Text::Format.new } assert(!@format_o.right_fill?) assert_nothing_raised { @format_o.format_style = Text::Format::RIGHT_ALIGN } assert(!@format_o.right_fill?) assert_nothing_raised { @format_o.format_style = Text::Format::RIGHT_FILL } assert(@format_o.right_fill?) assert_nothing_raised { @format_o.format_style = Text::Format::JUSTIFY } assert(!@format_o.right_fill?) # The format testing is done in test_format_style end
<code/>and<pre/>for code samples.