summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_comment.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-07 22:23:38 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-07 22:23:38 +0000
commitba6ae341bab83dfc7a624c5bf20d8d162dacaff9 (patch)
tree540581a54cefcdc817577f646f09372f7e9936d1 /test/rdoc/test_rdoc_comment.rb
parentbf51c067b92361007a57909c539591d3d00cdbd8 (diff)
* lib/rdoc/*, test/rdoc/*: Update rdoc-5.0.0.beta2
Fixed ri parse defect with left-hand matched classes. https://github.com/rdoc/rdoc/pull/420 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/test_rdoc_comment.rb')
-rw-r--r--test/rdoc/test_rdoc_comment.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/rdoc/test_rdoc_comment.rb b/test/rdoc/test_rdoc_comment.rb
index 178c579ea7..3b0927212f 100644
--- a/test/rdoc/test_rdoc_comment.rb
+++ b/test/rdoc/test_rdoc_comment.rb
@@ -207,8 +207,6 @@ lines, one line per element. Lines are assumed to be separated by _sep_.
end
def test_force_encoding
- skip "Encoding not implemented" unless Object.const_defined? :Encoding
-
@comment.force_encoding Encoding::UTF_8
assert_equal Encoding::UTF_8, @comment.text.encoding
@@ -343,8 +341,6 @@ lines, one line per element. Lines are assumed to be separated by _sep_.
end
def test_remove_private_encoding
- skip "Encoding not implemented" unless Object.const_defined? :Encoding
-
comment = RDoc::Comment.new <<-EOS, @top_level
# This is text
#--
@@ -467,8 +463,6 @@ lines, one line per element. Lines are assumed to be separated by _sep_.
end
def test_remove_private_toggle_encoding
- skip "Encoding not implemented" unless Object.const_defined? :Encoding
-
comment = RDoc::Comment.new <<-EOS, @top_level
# This is text
#--
@@ -485,8 +479,6 @@ lines, one line per element. Lines are assumed to be separated by _sep_.
end
def test_remove_private_toggle_encoding_ruby_bug?
- skip "Encoding not implemented" unless Object.const_defined? :Encoding
-
comment = RDoc::Comment.new <<-EOS, @top_level
#--
# this is private
@@ -502,4 +494,3 @@ lines, one line per element. Lines are assumed to be separated by _sep_.
end
end
-