Commit 31f729f2 authored by Marius Rackwitz's avatar Marius Rackwitz

[Spec] Remove tests for build setting VALIDATE_PRODUCT

This is not part of the default build settings with Xcode 6.1 anymore.
parent 7f672bd5
...@@ -64,19 +64,6 @@ module Pod ...@@ -64,19 +64,6 @@ module Pod
@project.targets.first.name.should == @target_definition.label @project.targets.first.name.should == @target_definition.label
end end
it 'adds the user build configurations to the target' do
@installer.install!
target = @project.targets.first
target.build_settings('Test')['VALIDATE_PRODUCT'].should.nil?
target.build_settings('AppStore')['VALIDATE_PRODUCT'].should == 'YES'
end
it 'sets VALIDATE_PRODUCT to YES for the Release configuration for iOS targets' do
@installer.install!
target = @project.targets.first
target.build_settings('Release')['VALIDATE_PRODUCT'].should == 'YES'
end
it 'sets the platform and the deployment target for iOS targets' do it 'sets the platform and the deployment target for iOS targets' do
@installer.install! @installer.install!
target = @project.targets.first target = @project.targets.first
......
...@@ -51,12 +51,6 @@ module Pod ...@@ -51,12 +51,6 @@ module Pod
@project.targets.first.name.should == 'Pods-BananaLib' @project.targets.first.name.should == 'Pods-BananaLib'
end end
it 'sets VALIDATE_PRODUCT to YES for the Release configuration for iOS targets' do
@installer.install!
target = @project.targets.first
target.build_settings('Release')['VALIDATE_PRODUCT'].should == 'YES'
end
it 'sets the platform and the deployment target for iOS targets' do it 'sets the platform and the deployment target for iOS targets' do
@installer.install! @installer.install!
target = @project.targets.first target = @project.targets.first
......
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