mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
455b051a00
* lib/rdoc/generator/html.rb: Pull out ContextUser classes and related methods for reuse. * lib/rdoc/generator.rb: Move ContextUser classes to RDoc::Generator::Context for reuse. * lib/rdoc/rdoc.rb: Make RDoc::RDoc initialization a little easier. * lib/rdoc/options.rb: Make RDoc::Options easier to use without parsing an ARGV. * lib/rdoc/markup/to_*.rb: Subclass RDoc::Markup::Formatter. * lib/rdoc/markup/formatter.rb: Add RDoc::Markup::Formatter to make RDoc markup conversion easier. * lib/rdoc/markup/fragments.rb: Make RDoc::Markup::ListItem easier to test. * lib/rdoc/markup/to_html_hyperlink.rb: Pulled out of the HTML generator for easier reusability. * lib/rdoc/markup.rb: Fix bug with labeled lists containing bullet lists. * lib/rdoc/generators/html/html.rb: Fix Constant display. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
69 lines
1.6 KiB
Ruby
69 lines
1.6 KiB
Ruby
require 'stringio'
|
|
require 'test/unit'
|
|
require 'rdoc/ri/formatter'
|
|
require 'rdoc/markup/fragments'
|
|
require 'rdoc/markup/to_flow'
|
|
|
|
class TestRDocRIOverstrikeFormatter < Test::Unit::TestCase
|
|
|
|
def setup
|
|
@output = StringIO.new
|
|
@width = 78
|
|
@indent = ' '
|
|
|
|
@f = RDoc::RI::OverstrikeFormatter.new @output, @width, @indent
|
|
@markup = RDoc::Markup.new
|
|
@flow = RDoc::Markup::ToFlow.new
|
|
|
|
@af = RDoc::RI::AttributeFormatter
|
|
end
|
|
|
|
def test_display_verbatim_flow_item_bold
|
|
verbatim = RDoc::Markup::Flow::VERB.new "*a* b c"
|
|
|
|
@f.display_verbatim_flow_item verbatim
|
|
|
|
assert_equal " *a* b c\n\n", @output.string
|
|
end
|
|
|
|
def test_write_attribute_text_bold
|
|
line = [RDoc::RI::AttributeFormatter::AttrChar.new('b', @af::BOLD)]
|
|
|
|
@f.write_attribute_text ' ', line
|
|
|
|
assert_equal " b\bb\n", @output.string
|
|
end
|
|
|
|
def test_write_attribute_text_bold_italic
|
|
attr = @af::BOLD | @af::ITALIC
|
|
line = [RDoc::RI::AttributeFormatter::AttrChar.new('d', attr)]
|
|
|
|
@f.write_attribute_text ' ', line
|
|
|
|
assert_equal " _\bd\bd\n", @output.string
|
|
end
|
|
|
|
def test_write_attribute_text_code
|
|
line = [RDoc::RI::AttributeFormatter::AttrChar.new('c', @af::CODE)]
|
|
|
|
@f.write_attribute_text ' ', line
|
|
|
|
assert_equal " _\bc\n", @output.string
|
|
end
|
|
|
|
def test_write_attribute_text_italic
|
|
line = [RDoc::RI::AttributeFormatter::AttrChar.new('a', @af::ITALIC)]
|
|
|
|
@f.write_attribute_text ' ', line
|
|
|
|
assert_equal " _\ba\n", @output.string
|
|
end
|
|
|
|
def test_bold_print
|
|
@f.bold_print 'a b c'
|
|
|
|
assert_equal "a\ba \b b\bb \b c\bc", @output.string
|
|
end
|
|
|
|
end
|
|
|