Sha256: e961d161b6e83eab4e255f3ce3cb8519f200a90a916dbd37aaa50e7f59aa219c
Contents?: true
Size: 767 Bytes
Versions: 4
Compression:
Stored size: 767 Bytes
Contents
# frozen_string_literal: true require "gir_ffi_test_helper" describe GirFFI::InfoExt::ICallableInfo do let(:info_class) do Class.new do include GirFFI::InfoExt::ICallableInfo end end let(:callable_info) { info_class.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
4 entries across 4 versions & 1 rubygems