Sha256: e760e9cac1b8e9fe2798aeb6d17326ccb2e23d959afd414dacd5d171b060688c

Contents?: true

Size: 975 Bytes

Versions: 79

Compression:

Stored size: 975 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 "Function with primitive boolean arguments and return values" do
  module LibTest
    extend FFI::Library
    ffi_lib TestLibrary::PATH
    attach_function :bool_return_true, [ ], :bool
    attach_function :bool_return_false, [ ], :bool
    attach_function :bool_return_val, [ :bool ], :bool
    attach_function :bool_reverse_val, [ :bool ], :bool
  end

  it "bools" do
    expect(LibTest.bool_return_true).to be true
    expect(LibTest.bool_return_false).to be false

    expect(LibTest.bool_return_val(true)).to be true
    expect(LibTest.bool_return_val(false)).to be false

    expect(LibTest.bool_reverse_val(true)).to be false
    expect(LibTest.bool_reverse_val(false)).to be true
  end

  it "raise error on invalid types" do
    expect { LibTest.bool_return_val(nil) }.to raise_error(::TypeError)
  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/bool_spec.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/bool_spec.rb
ffi-1.9.14-x86-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.14-x64-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.14 spec/ffi/bool_spec.rb
ffi-1.9.13-x86-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.13-x64-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.13 spec/ffi/bool_spec.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/bool_spec.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.12/spec/ffi/bool_spec.rb
ffi-1.9.12-x86-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.12-x64-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.12 spec/ffi/bool_spec.rb
ffi-1.9.11-x86-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.11-x64-mingw32 spec/ffi/bool_spec.rb
ffi-1.9.11 spec/ffi/bool_spec.rb
tdiary-5.0.1 vendor/bundle/gems/ffi-1.9.10/spec/ffi/bool_spec.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.10/spec/ffi/bool_spec.rb
dwolla_swagger-1.0.6 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/bool_spec.rb
mastermind_adeybee-0.1.4 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/bool_spec.rb