Sha256: 13267706343c465bb1ecd6bf5012c6820af63a8fc8be41dd7868d2617b3af6e2
Contents?: true
Size: 753 Bytes
Versions: 9
Compression:
Stored size: 753 Bytes
Contents
# frozen_string_literal: true require 'gir_ffi_test_helper' describe GirFFI::InfoExt::ICallableInfo do let(:klass) do Class.new do include GirFFI::InfoExt::ICallableInfo end 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
9 entries across 9 versions & 1 rubygems