mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rdoc/cross_reference.rb: Fixed matching of C#=== or #===. RDoc
bug #164 * test/rdoc/test_rdoc_cross_reference.rb: Test for above. * lib/rdoc/parser/changelog.rb: Fixed parsing of dates. RDoc bug #165 * test/rdoc/test_rdoc_parser_changelog.rb: Test for above. * lib/rdoc/parser.rb: Fixed parsing multibyte files with incomplete characters at byte 1024. [ruby-trunk - Bug #6393] Fixed handling of -E. [ruby-trunk - Bug #6392] * test/rdoc/test_rdoc_options.rb: Test for above. * test/rdoc/test_rdoc_parser.rb: ditto. * test/rdoc/test_rdoc_parser_c.rb: ditto. * test/rdoc/test_rdoc_parser_changelog.rb: ditto. * test/rdoc/test_rdoc_parser_markdown.rb: ditto. * test/rdoc/test_rdoc_parser_rd.rb: ditto. * test/rdoc/test_rdoc_rdoc.rb: ditto. * lib/rdoc/tom_doc.rb: Fixed parsing of [] in TomDoc arguments list. RDoc bug #167 * test/rdoc/test_rdoc_tom_doc.rb: Test for above. * lib/rdoc.rb: Update version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5a7c4d2a78
commit
f3b24b5b7f
16 changed files with 265 additions and 51 deletions
|
@ -16,6 +16,14 @@ class TestRDocCrossReference < XrefTestCase
|
|||
assert_equal name, @xref.resolve(name, name)
|
||||
end
|
||||
|
||||
def test_METHOD_REGEXP_STR
|
||||
re = /#{RDoc::CrossReference::METHOD_REGEXP_STR}/
|
||||
|
||||
re =~ '==='
|
||||
|
||||
assert_equal '===', $&
|
||||
end
|
||||
|
||||
def test_resolve_C2
|
||||
@xref = RDoc::CrossReference.new @c2
|
||||
|
||||
|
@ -129,6 +137,13 @@ class TestRDocCrossReference < XrefTestCase
|
|||
assert_ref @c2_c3_m, '::C2::C3#m(*)'
|
||||
end
|
||||
|
||||
def test_resolve_method_equals3
|
||||
m = RDoc::AnyMethod.new '', '==='
|
||||
@c1.add_method m
|
||||
|
||||
assert_ref m, '==='
|
||||
end
|
||||
|
||||
def test_resolve_page
|
||||
page = @store.add_file 'README.txt'
|
||||
page.parser = RDoc::Parser::Simple
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue