Sha256: 80f4214ba2b2a72e67a4c2cdd21c925b9b49c87c004638bcae0a3c9e58930c8a
Contents?: true
Size: 938 Bytes
Versions: 104
Compression:
Stored size: 938 Bytes
Contents
require 'rdoc/test_case' class TestRDocMarkupFormatter < RDoc::TestCase class ToTest < RDoc::Markup::Formatter def initialize markup super add_tag :TT, '<code>', '</code>' end def accept_paragraph paragraph @res << attributes(paragraph.text) end def attributes text convert_flow @am.flow text.dup end def handle_special_CAPS special "handled #{special.text}" end def start_accepting @res = "" end def end_accepting @res end end def setup super @markup = @RM.new @markup.add_special(/[A-Z]+/, :CAPS) @to = ToTest.new @markup @caps = @RM::Attribute.bitmap_for :CAPS @special = @RM::Attribute.bitmap_for :_SPECIAL_ @tt = @RM::Attribute.bitmap_for :TT end def test_convert_tt_special converted = @to.convert '<code>AAA</code>' assert_equal '<code>AAA</code>', converted end end
Version data entries
104 entries across 82 versions & 22 rubygems