mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d0d68df7d0
* ext/extmk.rb (extmake), lib/mkmf.rb (have_framework): fix splitting options with an argument, not using NUL as special character. [ruby-core:47447] [Bug #6987] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
14 lines
427 B
Ruby
14 lines
427 B
Ruby
require_relative 'base'
|
|
|
|
class TestMkmf
|
|
class TestHaveFramework < TestMkmf
|
|
def test_core_foundation_framework
|
|
assert(have_framework("CoreFoundation"), mkmflog("try as Objective-C"))
|
|
end
|
|
|
|
def test_multi_frameworks
|
|
assert(have_framework("CoreFoundation"), mkmflog("try as Objective-C"))
|
|
assert(have_framework("Cocoa"), mkmflog("try as Objective-C"))
|
|
end
|
|
end
|
|
end if /darwin/ =~ RUBY_PLATFORM
|