Commit d08d3017 authored by Samuel E. Giddins's avatar Samuel E. Giddins

Update Aggregate XCConfig specs for eliding inherited-only settings

parent 252f7055
...@@ -158,7 +158,7 @@ module Pod ...@@ -158,7 +158,7 @@ module Pod
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 == '$(inherited) ' @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 it 'configures the project to load all members that implement Objective-c classes or categories' do
...@@ -209,7 +209,7 @@ module Pod ...@@ -209,7 +209,7 @@ module Pod
describe 'with an unscoped pod target' do describe 'with an unscoped pod target' do
it 'adds the framework build path to the xcconfig, with quotes, as framework search paths' do it 'adds the framework build path to the xcconfig, with quotes, as framework search paths' do
@xcconfig.to_hash['FRAMEWORK_SEARCH_PATHS'].should == '$(inherited) ' @xcconfig.to_hash['FRAMEWORK_SEARCH_PATHS'].should.be.nil
end end
it 'adds the framework header paths to the xcconfig, with quotes, as local headers' do it 'adds the framework header paths to the xcconfig, with quotes, as local headers' 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