Commit 821f2080 authored by Dimitris Koutsogiorgas's avatar Dimitris Koutsogiorgas Committed by GitHub

Merge pull request #7023 from dnkoutso/fix_build

Fix static framework spec
parents fd1191d5 e5061153
...@@ -82,6 +82,7 @@ module Pod ...@@ -82,6 +82,7 @@ module Pod
end end
it 'adds the libraries of the xcconfig for a static framework' do it 'adds the libraries of the xcconfig for a static framework' do
spec = stub(:test_specification? => false)
target_definition = stub(:inheritance => 'search_paths') target_definition = stub(:inheritance => 'search_paths')
consumer = stub( consumer = stub(
:pod_target_xcconfig => {}, :pod_target_xcconfig => {},
...@@ -91,6 +92,7 @@ module Pod ...@@ -91,6 +92,7 @@ module Pod
:platform_name => :ios, :platform_name => :ios,
) )
file_accessor = stub( file_accessor = stub(
:spec => spec,
:spec_consumer => consumer, :spec_consumer => consumer,
:vendored_static_frameworks => [], :vendored_static_frameworks => [],
:vendored_dynamic_frameworks => [], :vendored_dynamic_frameworks => [],
......
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