mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
Import RDoc 2.5
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9b40cdfe8c
commit
46580b5147
176 changed files with 17841 additions and 16457 deletions
48
test/rdoc/test_rdoc_parser_simple.rb
Normal file
48
test/rdoc/test_rdoc_parser_simple.rb
Normal file
|
@ -0,0 +1,48 @@
|
|||
require 'tempfile'
|
||||
require 'rubygems'
|
||||
require 'minitest/autorun'
|
||||
require 'rdoc/options'
|
||||
require 'rdoc/parser'
|
||||
|
||||
class TestRDocParserSimple < MiniTest::Unit::TestCase
|
||||
|
||||
def setup
|
||||
@tempfile = Tempfile.new self.class.name
|
||||
filename = @tempfile.path
|
||||
|
||||
@top_level = RDoc::TopLevel.new filename
|
||||
@fn = filename
|
||||
@options = RDoc::Options.new
|
||||
@stats = RDoc::Stats.new 0
|
||||
|
||||
RDoc::TopLevel.reset
|
||||
end
|
||||
|
||||
def teardown
|
||||
@tempfile.close
|
||||
end
|
||||
|
||||
def test_remove_private_comments
|
||||
parser = util_parser ''
|
||||
text = "foo\n\n--\nbar\n++\n\nbaz\n"
|
||||
|
||||
expected = "foo\n\n\n\nbaz\n"
|
||||
|
||||
assert_equal expected, parser.remove_private_comments(text)
|
||||
end
|
||||
|
||||
def test_remove_private_comments_star
|
||||
parser = util_parser ''
|
||||
|
||||
text = "* foo\n* bar\n"
|
||||
expected = text.dup
|
||||
|
||||
assert_equal expected, parser.remove_private_comments(text)
|
||||
end
|
||||
|
||||
def util_parser(content)
|
||||
RDoc::Parser::Simple.new @top_level, @fn, content, @options, @stats
|
||||
end
|
||||
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue