2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2011-01-23 08:20:58 -05:00
|
|
|
begin
|
|
|
|
require_relative 'helper'
|
|
|
|
rescue LoadError
|
|
|
|
end
|
2010-05-06 02:59:24 -04:00
|
|
|
|
|
|
|
class TestFiddle < Fiddle::TestCase
|
2010-12-27 14:34:00 -05:00
|
|
|
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
|
|
|
|
|
2011-01-23 08:20:58 -05:00
|
|
|
end if defined?(Fiddle)
|