summaryrefslogtreecommitdiff
path: root/test/fiddle/test_fiddle.rb
blob: f910978af55457b5cc65f64612e47ce1a135608c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
begin
  require_relative 'helper'
rescue LoadError
end

class TestFiddle < Fiddle::TestCase
  def test_constants_match
    [
      :TYPE_VOID,
      :TYPE_VOIDP,
      :TYPE_CHAR,
      :TYPE_SHORT,
      :TYPE_INT,
      :TYPE_LONG,
      :TYPE_LONG_LONG,
      :TYPE_FLOAT,
      :TYPE_DOUBLE,
      :TYPE_SIZE_T,
      :TYPE_SSIZE_T,
      :TYPE_PTRDIFF_T,
      :TYPE_INTPTR_T,
      :TYPE_UINTPTR_T,
    ].each do |name|
      assert_equal(DL.const_get(name), Fiddle.const_get(name), "Fiddle::#{name}")
    end
  end

  def test_windows_constant
    require 'rbconfig'
    if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
      assert Fiddle::WINDOWS, "Fiddle::WINDOWS should be 'true' on Windows platforms"
    else
      refute Fiddle::WINDOWS, "Fiddle::WINDOWS should be 'false' on non-Windows platforms"
    end
  end

end if defined?(Fiddle)