Commit ff6d43a0 authored by Marius Rackwitz's avatar Marius Rackwitz

[Spec] Fix disabled Installer spec

parent 4154b9de
...@@ -633,10 +633,10 @@ module Pod ...@@ -633,10 +633,10 @@ module Pod
@installer.send(:install_libraries) @installer.send(:install_libraries)
end end
xit 'adds the frameworks required by to the pod to the project for informative purposes' do it 'adds the frameworks required by to the pod to the project for informative purposes' do
Specification::Consumer.any_instance.stubs(:frameworks).returns(['QuartzCore']) Specification::Consumer.any_instance.stubs(:frameworks).returns(['QuartzCore'])
@installer.install! @installer.install!
names = @installer.sandbox.project['Frameworks'].children.map(&:name) names = @installer.sandbox.project['Frameworks']['iOS'].children.map(&:name)
names.sort.should == ['Foundation.framework', 'QuartzCore.framework'] names.sort.should == ['Foundation.framework', 'QuartzCore.framework']
end end
end end
......
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