summaryrefslogtreecommitdiff
path: root/test/ruby/test_notimp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_notimp.rb')
-rw-r--r--test/ruby/test_notimp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_notimp.rb b/test/ruby/test_notimp.rb
index dfe51683c9..c29119eac9 100644
--- a/test/ruby/test_notimp.rb
+++ b/test/ruby/test_notimp.rb
@@ -3,14 +3,14 @@ require 'tmpdir'
class TestNotImplement < Test::Unit::TestCase
def test_respond_to_fork
- assert_includes(Process.methods, :fork)
+ assert_include(Process.methods, :fork)
if /linux/ =~ RUBY_PLATFORM
assert_equal(true, Process.respond_to?(:fork))
end
end
def test_respond_to_lchmod
- assert_includes(File.methods, :lchmod)
+ assert_include(File.methods, :lchmod)
if /linux/ =~ RUBY_PLATFORM
assert_equal(false, File.respond_to?(:lchmod))
end