1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/mkmf/test_framework.rb
nobu 8e799c3e5b * test/mkmf/test_framework.rb: try CoreFoundation framework, than
Cocoa which is dependent on QuickTime SDK which has separated
  since Xcode 4.3.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-02-22 01:32:14 +00:00

9 lines
232 B
Ruby

require_relative 'base'
class TestMkmf
class TestHaveFramework < TestMkmf
def test_core_foundation_framework
assert(have_framework("CoreFoundation"), "try as Objective-C")
end
end
end if /darwin/ =~ RUBY_PLATFORM