text_formatter_test_case.rb

Path: lib/rdoc/markup/text_formatter_test_case.rb
Last Update: Sun Jan 12 16:55:47 +0000 2014

Test case for creating new plain-text RDoc::Markup formatters. See also RDoc::Markup::FormatterTestCase

See test_rdoc_markup_to_rdoc.rb for a complete example.

Example:

 class TestRDocMarkupToNewTextFormat < RDoc::Markup::TextFormatterTestCase

   add_visitor_tests
   add_text_tests

   def setup
     super

     @to = RDoc::Markup::ToNewTextFormat.new
   end

   def accept_blank_line
     assert_equal :junk, @to.res.join
   end

   # ...

 end

[Validate]