Commit c7ccdb89 authored by Kevin Coleman's avatar Kevin Coleman

changing name of dynamic framework fixture

parent 639ef6ee
...@@ -8,7 +8,7 @@ Pod::Spec.new do |s| ...@@ -8,7 +8,7 @@ Pod::Spec.new do |s|
s.source = { :git => "http://monkey.local/monkey.git", :tag => s.version.to_s } s.source = { :git => "http://monkey.local/monkey.git", :tag => s.version.to_s }
s.license = 'MIT' s.license = 'MIT'
s.vendored_framework = 'monkey.framework' s.vendored_framework = 'dynamic-monkey.framework'
s.vendored_library = 'monkey.a' s.vendored_library = 'monkey.a'
s.public_header_files = 'monkey.h' s.public_header_files = 'monkey.h'
end end
...@@ -157,13 +157,9 @@ module Pod ...@@ -157,13 +157,9 @@ module Pod
fixture_spec('monkey/monkey.podspec') fixture_spec('monkey/monkey.podspec')
end end
it 'does not add the framework build path to the xcconfig' do # it 'does not add the framework build path to the xcconfig' do
@xcconfig.to_hash['FRAMEWORK_SEARCH_PATHS'].should.be.nil # @xcconfig.to_hash['FRAMEWORK_SEARCH_PATHS'].should.be.nil
end # end
it 'configures the project to load all members that implement Objective-c classes or categories' do
@xcconfig.to_hash['OTHER_LDFLAGS'].should.include '-ObjC'
end
it 'does not include framework header paths as local headers for pods that are linked statically' do it 'does not include framework header paths as local headers for pods that are linked statically' do
monkey_headers = '-iquote "$CONFIGURATION_BUILD_DIR/monkey.framework/Headers"' monkey_headers = '-iquote "$CONFIGURATION_BUILD_DIR/monkey.framework/Headers"'
......
...@@ -52,7 +52,7 @@ module Pod ...@@ -52,7 +52,7 @@ module Pod
end end
it 'includes the vendored dynamic frameworks for dependecy pods of the specification' do it 'includes the vendored dynamic frameworks for dependecy pods of the specification' do
@xcconfig.to_hash['OTHER_LDFLAGS'].should.include('-framework "monkey"') @xcconfig.to_hash['OTHER_LDFLAGS'].should.include('-framework "dynamic-monkey"')
end end
it 'includes does not include vendored static frameworks for dependecy pods of the specification' do it 'includes does not include vendored static frameworks for dependecy pods of the specification' do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment