aboutsummaryrefslogtreecommitdiffstats
path: root/test/rdoc/test_rdoc_ri_driver.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-24 07:39:37 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-24 07:39:37 +0000
commit716dffa7daa3609dbcd6eb029d9445b2f50d8aab (patch)
treeac513707b2dfc108f844d6338dc5e1933d189819 /test/rdoc/test_rdoc_ri_driver.rb
parent6ca66b6a0d2c42c2e1f31f9d00c5bf616b9ccd42 (diff)
downloadruby-716dffa7daa3609dbcd6eb029d9445b2f50d8aab.tar.gz
Update rdoc-5.1.0
* Details of changes are following url. https://github.com/rdoc/rdoc/blob/master/History.rdoc#510--2017-02-24 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57703 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/test_rdoc_ri_driver.rb')
-rw-r--r--test/rdoc/test_rdoc_ri_driver.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/rdoc/test_rdoc_ri_driver.rb b/test/rdoc/test_rdoc_ri_driver.rb
index 144e74f825..1aa4762f92 100644
--- a/test/rdoc/test_rdoc_ri_driver.rb
+++ b/test/rdoc/test_rdoc_ri_driver.rb
@@ -282,7 +282,7 @@ class TestRDocRIDriver < RDoc::TestCase
assert_equal expected, out
end
- def test_add_method_overriden
+ def test_add_method_overridden
util_multi_store
out = doc
@@ -646,7 +646,7 @@ class TestRDocRIDriver < RDoc::TestCase
assert_match %r%^=== Implementation from Foo%, out
end
- def test_display_method_overriden
+ def test_display_method_overridden
util_multi_store
out, = capture_io do
@@ -1455,10 +1455,10 @@ Foo::Bar#bother
@inherit = @cFoo.add_method RDoc::AnyMethod.new(nil, 'inherit')
@inherit.record_location @top_level
- # overriden by Bar in multi_store
- @overriden = @cFoo.add_method RDoc::AnyMethod.new(nil, 'override')
- @overriden.comment = 'must not be displayed in Bar#override'
- @overriden.record_location @top_level
+ # overridden by Bar in multi_store
+ @overridden = @cFoo.add_method RDoc::AnyMethod.new(nil, 'override')
+ @overridden.comment = 'must not be displayed in Bar#override'
+ @overridden.record_location @top_level
@store1.save