Sha256: c969178ef5a76ad177bc6bb06229f661c948b2cdf2df50f035e361621e2e7acf

Contents?: true

Size: 816 Bytes

Versions: 7

Compression:

Stored size: 816 Bytes

Contents

# frozen_string_literal: true
require 'base_test_helper'

describe GLib::Boolean do
  it 'has the same native size as an int' do
    FFI.type_size(GLib::Boolean).must_equal FFI.type_size :int
  end

  describe '.from_native' do
    it 'converts 0 to false' do
      GLib::Boolean.from_native(0, 'whatever').must_equal false
    end

    it 'converts 1 to true' do
      GLib::Boolean.from_native(1, 'whatever').must_equal true
    end
  end

  describe '.to_native' do
    it 'converts false to 0' do
      GLib::Boolean.to_native(false, 'whatever').must_equal 0
    end

    it 'converts true to 1' do
      GLib::Boolean.to_native(true, 'whatever').must_equal 1
    end
  end

  describe '.size' do
    it 'returns the correct type size' do
      GLib::Boolean.size.must_equal FFI.type_size :int
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gir_ffi-0.10.2 test/gir_ffi-base/glib/boolean_test.rb
gir_ffi-0.10.1 test/gir_ffi-base/glib/boolean_test.rb
gir_ffi-0.10.0 test/gir_ffi-base/glib/boolean_test.rb
gir_ffi-0.10.0.pre1 test/gir_ffi-base/glib/boolean_test.rb
gir_ffi-0.9.5 test/gir_ffi-base/glib/boolean_test.rb
gir_ffi-0.9.4 test/gir_ffi-base/glib/boolean_test.rb
gir_ffi-0.9.3 test/gir_ffi-base/glib/boolean_test.rb