summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-18 06:31:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-18 06:31:42 +0000
commitc4d216793b4c74b725c72679149d6db82a2d7597 (patch)
treef6b61cede10f2ec9e5e631d207d6e66551d4698b /test
parent15b974893465795b567945be53d17983b6089749 (diff)
intern.h: rb_f_notimplement for ext on Windows
* include/ruby/intern.h (rb_f_notimplement): should not respond to not-implemented methods. as the address inside a DLL and the imported address are different on Windows, use an exported variable to share the same address. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/-ext-/test_notimplement.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/-ext-/test_notimplement.rb b/test/-ext-/test_notimplement.rb
index 22bb7f7b88..7394126fb1 100644
--- a/test/-ext-/test_notimplement.rb
+++ b/test/-ext-/test_notimplement.rb
@@ -7,4 +7,8 @@ class TestNotImplement < Test::Unit::TestCase
Bug.funcall(:notimplement)
}
end
+
+ def test_respond_to
+ assert_not_respond_to(Bug, :notimplement)
+ end
end