Sha256: 3fb865890992ad287017254c085fdbe24267bef1df2eeecc0a49eab6e11e7782

Contents?: true

Size: 960 Bytes

Versions: 79

Compression:

Stored size: 960 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
    expect(StructWithInitialize.new.magic).to eq(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
    expect(ManagedStructWithInitialize.new.magic).to eq(42)
  end
end

Version data entries

79 entries across 77 versions & 14 rubygems

Version Path
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/struct_initialize_spec.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/struct_initialize_spec.rb
ffi-1.9.14-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.14-x64-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.14 spec/ffi/struct_initialize_spec.rb
ffi-1.9.13-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.13-x64-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.13 spec/ffi/struct_initialize_spec.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/struct_initialize_spec.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/struct_initialize_spec.rb
ffi-1.9.12-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.12-x64-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.12 spec/ffi/struct_initialize_spec.rb
ffi-1.9.11-x86-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.11-x64-mingw32 spec/ffi/struct_initialize_spec.rb
ffi-1.9.11 spec/ffi/struct_initialize_spec.rb
tdiary-5.0.1 vendor/bundle/gems/ffi-1.9.10/spec/ffi/struct_initialize_spec.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.10/spec/ffi/struct_initialize_spec.rb
dwolla_swagger-1.0.6 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_initialize_spec.rb
mastermind_adeybee-0.1.4 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_initialize_spec.rb