mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
858362e761
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19537 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
require 'test/unit'
|
|
require 'rdoc/markup'
|
|
require 'rdoc/markup/to_html'
|
|
|
|
class TestRDocMarkupToHtml < Test::Unit::TestCase
|
|
|
|
def setup
|
|
@am = RDoc::Markup::AttributeManager.new
|
|
@th = RDoc::Markup::ToHtml.new
|
|
end
|
|
|
|
def test_tt_formatting
|
|
assert_equal "<p>\n<tt>--</tt> — <tt>cats'</tt> cats’\n</p>\n",
|
|
util_format("<tt>--</tt> -- <tt>cats'</tt> cats'")
|
|
assert_equal "<p>\n<b>—</b>\n</p>\n", util_format("<b>--</b>")
|
|
end
|
|
|
|
def test_convert_string_fancy
|
|
#
|
|
# The HTML typesetting is broken in a number of ways, but I have fixed
|
|
# the most glaring issues for single and double quotes. Note that
|
|
# "strange" symbols (periods or dashes) need to be at the end of the
|
|
# test case strings in order to suppress cross-references.
|
|
#
|
|
assert_equal "<p>\n“cats”.\n</p>\n", util_format("\"cats\".")
|
|
assert_equal "<p>\n‘cats’.\n</p>\n", util_format("\'cats\'.")
|
|
assert_equal "<p>\ncat’s-\n</p>\n", util_format("cat\'s-")
|
|
end
|
|
|
|
def util_fragment(text)
|
|
RDoc::Markup::Fragment.new 0, nil, nil, text
|
|
end
|
|
|
|
def util_format(text)
|
|
fragment = util_fragment text
|
|
|
|
@th.start_accepting
|
|
@th.accept_paragraph @am, fragment
|
|
@th.end_accepting
|
|
end
|
|
|
|
end
|