Sha256: 0c34e42e8aa8c4bba792f4ca5251390dbe80e3c6798989f953a79fc3d3f449b1
Contents?: true
Size: 950 Bytes
Versions: 39
Compression:
Stored size: 950 Bytes
Contents
# # This file is part of ruby-ffi. # For licensing, see LICENSE.SPECS # require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper")) describe FFI::Struct, ' with an initialize function' do it "should call the initialize function" do class StructWithInitialize < FFI::Struct layout :string, :string attr_accessor :magic def initialize super self.magic = 42 end end StructWithInitialize.new.magic.should == 42 end end describe FFI::ManagedStruct, ' with an initialize function' do it "should call the initialize function" do class ManagedStructWithInitialize < FFI::ManagedStruct layout :string, :string attr_accessor :magic def initialize super FFI::MemoryPointer.new(:pointer).put_int(0, 0x1234).get_pointer(0) self.magic = 42 end def self.release;end end ManagedStructWithInitialize.new.magic.should == 42 end end
Version data entries
39 entries across 37 versions & 8 rubygems