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

Version Path
ffi-1.7.0-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.7.0 spec/ffi/struct_initialize_spec.rb
ffi-1.7.0.dev spec/ffi/struct_initialize_spec.rb
ffi-1.6.0-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.6.0 spec/ffi/struct_initialize_spec.rb
ffi-1.5.0-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.5.0 spec/ffi/struct_initialize_spec.rb
vagrant-actionio-0.0.9 vendor/bundle/gems/ffi-1.4.0/spec/ffi/struct_initialize_spec.rb
ffi-1.5.0.pre1-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.5.0.pre1 spec/ffi/struct_initialize_spec.rb
ffi-1.4.1.dev-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.4.1.dev spec/ffi/struct_initialize_spec.rb
ffi-1.4.0-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.4.0 spec/ffi/struct_initialize_spec.rb
librarian-puppet-0.9.8 vendor/gems/ruby/1.9.1/gems/ffi-1.3.1/spec/ffi/struct_initialize_spec.rb
ffi-1.3.1-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.3.1 spec/ffi/struct_initialize_spec.rb
ffi-1.3.0-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.3.0 spec/ffi/struct_initialize_spec.rb