summaryrefslogtreecommitdiff
path: root/spec/ffi/struct_by_ref_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ffi/struct_by_ref_spec.rb')
-rw-r--r--spec/ffi/struct_by_ref_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/ffi/struct_by_ref_spec.rb b/spec/ffi/struct_by_ref_spec.rb
index 0858423..0f48fbb 100644
--- a/spec/ffi/struct_by_ref_spec.rb
+++ b/spec/ffi/struct_by_ref_spec.rb
@@ -39,5 +39,10 @@ describe FFI::Struct, ' by_ref' do
expect { @api.struct_test(other_class.new) }.to raise_error(TypeError)
end
+
+ it "can reveal the mapped type converter" do
+ param_type = @api.attached_functions["struct_test"].param_types[0]
+ expect(param_type.converter).to be_a(FFI::StructByReference)
+ end
end