mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rdoc.rb: Import RDoc 3.7 release candidate
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
97ac172d58
commit
b7528b5edb
58 changed files with 2637 additions and 277 deletions
|
|
@ -5,5 +5,17 @@ require 'rdoc/markup'
|
|||
|
||||
class TestRDocMarkupParagraph < MiniTest::Unit::TestCase
|
||||
|
||||
def test_accept
|
||||
visitor = Object.new
|
||||
def visitor.accept_paragraph(obj) @obj = obj end
|
||||
def visitor.obj() @obj end
|
||||
|
||||
paragraph = RDoc::Markup::Paragraph.new
|
||||
|
||||
paragraph.accept visitor
|
||||
|
||||
assert_equal paragraph, visitor.obj
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue