1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rdoc*: Improved display of ChangeLog files as HTML.

* test/rdoc*:  Test for above.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2012-12-05 22:20:15 +00:00
parent fe6b2e20e9
commit 54c40f3db5
9 changed files with 136 additions and 14 deletions

View file

@ -96,7 +96,17 @@ class TestRDocParserChangeLog < RDoc::TestCase
expected.file = @top_level
assert_equal expected, parser.create_document(groups)
document = parser.create_document(groups)
assert_equal expected, document
assert_equal 2, document.omit_headings_below
headings = document.parts.select do |part|
RDoc::Markup::Heading === part and part.level == 2
end
refute headings.all? { |heading| heading.text.frozen? }
end
def test_create_entries
@ -118,6 +128,26 @@ class TestRDocParserChangeLog < RDoc::TestCase
list(:NOTE, item('c', para('three')), item('d', para('four'))),
]
entries = parser.create_entries(entries)
assert_equal expected, entries
end
def test_create_entries_colons
parser = util_parser
entries = [
['Wed Dec 5 12:17:11 2012 Naohisa Goto <ngotogenome@gmail.com>',
['func.rb (DL::Function#bind): log stuff [ruby-core:50562]']],
]
expected = [
head(3,
'Wed Dec 5 12:17:11 2012 Naohisa Goto <ngotogenome@gmail.com>'),
blank_line,
list(:NOTE,
item('func.rb (DL::Function#bind)',
para('log stuff [ruby-core:50562]')))]
assert_equal expected, parser.create_entries(entries)
end