mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/dl/test_callback.rb (**) adding a callback test file
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5de564634d
commit
912c42bebf
1 changed files with 32 additions and 0 deletions
32
test/dl/test_callback.rb
Normal file
32
test/dl/test_callback.rb
Normal file
|
@ -0,0 +1,32 @@
|
|||
require_relative 'test_base'
|
||||
require_relative '../ruby/envutil'
|
||||
|
||||
module DL
|
||||
class TestCallback < TestBase
|
||||
include DL
|
||||
|
||||
def test_callback_with_string
|
||||
called_with = nil
|
||||
addr = set_callback(TYPE_VOID, 1) do |str|
|
||||
called_with = dlunwrap(str)
|
||||
end
|
||||
func = CFunc.new(addr, TYPE_VOID, 'test')
|
||||
|
||||
func.call([dlwrap('foo')])
|
||||
assert_equal 'foo', called_with
|
||||
end
|
||||
|
||||
def test_call_callback
|
||||
called = false
|
||||
|
||||
addr = set_callback(TYPE_VOID, 0) do
|
||||
called = true
|
||||
end
|
||||
|
||||
func = CFunc.new(addr, TYPE_VOID, 'test')
|
||||
func.call([])
|
||||
|
||||
assert called, 'function should be called'
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue