mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rdoc.rb: Updated to RDoc 3.6
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fe89874540
commit
0b6da24a5e
28 changed files with 593 additions and 97 deletions
|
|
@ -625,6 +625,25 @@ for all good men
|
|||
assert_equal expected, @RMP.parse(str).parts
|
||||
end
|
||||
|
||||
def test_parse_rule
|
||||
str = <<-STR
|
||||
now is the time
|
||||
|
||||
---
|
||||
|
||||
for all good men
|
||||
STR
|
||||
|
||||
expected = [
|
||||
@RM::Paragraph.new('now is the time'),
|
||||
@RM::BlankLine.new,
|
||||
@RM::Rule.new(1),
|
||||
@RM::BlankLine.new,
|
||||
@RM::Paragraph.new('for all good men')]
|
||||
|
||||
assert_equal expected, @RMP.parse(str).parts
|
||||
end
|
||||
|
||||
def test_parse_ualpha
|
||||
str = <<-STR
|
||||
A. l1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue