Sha256: e6b4ac978ef2b831f0702bdff1d2f4c3eafeca1b4c9dee38f6722167a6d50264
Contents?: true
Size: 833 Bytes
Versions: 2
Compression:
Stored size: 833 Bytes
Contents
# frozen_string_literal: true require 'gir_ffi_test_helper' describe GirFFI::Boolean do it 'has the same native size as an int' do FFI.type_size(GirFFI::Boolean).must_equal FFI.type_size :int end describe '.from_native' do it 'converts 0 to false' do GirFFI::Boolean.from_native(0, 'whatever').must_equal false end it 'converts 1 to true' do GirFFI::Boolean.from_native(1, 'whatever').must_equal true end end describe '.to_native' do it 'converts false to 0' do GirFFI::Boolean.to_native(false, 'whatever').must_equal 0 end it 'converts true to 1' do GirFFI::Boolean.to_native(true, 'whatever').must_equal 1 end end describe '.size' do it 'returns the correct type size' do GirFFI::Boolean.size.must_equal FFI.type_size :int end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.11.1 | test/gir_ffi/boolean_test.rb |
gir_ffi-0.11.0 | test/gir_ffi/boolean_test.rb |