Sha256: 5b4d4ffe809f656ce582aeaacd793ffa7f55f403e3ae8719f8b5a943ef52544c
Contents?: true
Size: 720 Bytes
Versions: 2
Compression:
Stored size: 720 Bytes
Contents
require 'gir_ffi_test_helper' describe GirFFI::InfoExt::ICallableInfo do let(:klass) { Class.new do include GirFFI::InfoExt::ICallableInfo end } let(:callable_info) { klass.new } describe '#argument_ffi_types' do describe 'for a simple callable with several arguments' do before do allow(arg_info1 = Object.new).to receive(:to_ffi_type).and_return :type1 allow(arg_info2 = Object.new).to receive(:to_ffi_type).and_return :type2 allow(callable_info).to receive(:args).and_return [arg_info1, arg_info2] end it 'returns the ffi types of the arguments' do callable_info.argument_ffi_types.must_equal [:type1, :type2] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.7.10 | test/gir_ffi/info_ext/i_callable_info_test.rb |
gir_ffi-0.7.9 | test/gir_ffi/info_ext/i_callable_info_test.rb |