Commit 33558090 authored by Ben Scheirman's avatar Ben Scheirman Committed by Eloy Duran

Podfile stubs now include a dummy xcodeproj setting

parent 28279113
...@@ -6,11 +6,16 @@ describe Pod::Installer::TargetInstaller do ...@@ -6,11 +6,16 @@ describe Pod::Installer::TargetInstaller do
before do before do
platform = Pod::Platform.ios platform = Pod::Platform.ios
@target_definition = Pod::Podfile::TargetDefinition.new(:foo) @target_definition = Pod::Podfile::TargetDefinition.new(:foo)
@target_definition.platform = platform @target_definition.platform = platform
@podfile = stub('podfile', :platform => platform,
@podfile = stub('podfile',
:platform => platform,
:xcodeproj => 'dummy.xcodeproj',
:generate_bridge_support? => false, :generate_bridge_support? => false,
:set_arc_compatibility_flag? => false) :set_arc_compatibility_flag? => false
)
@project = Pod::Project.new @project = Pod::Project.new
@project.main_group.groups.new('name' => 'Targets Support Files') @project.main_group.groups.new('name' => 'Targets Support Files')
......
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