2011-01-23 16:20:58 +03:00
|
|
|
begin
|
|
|
|
require_relative 'helper'
|
|
|
|
rescue LoadError
|
|
|
|
end
|
2010-05-06 10:59:24 +04:00
|
|
|
|
|
|
|
class TestFiddle < Fiddle::TestCase
|
2010-12-27 22:34:00 +03: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 16:20:58 +03:00
|
|
|
end if defined?(Fiddle)
|