Commit 87546c3e authored by Marius Rackwitz's avatar Marius Rackwitz

[Spec] Expect what is documented to happen

Thanks @segiddins.
parent 1a525c59
...@@ -105,11 +105,11 @@ module Pod ...@@ -105,11 +105,11 @@ module Pod
end end
it 'does link with vendored frameworks' do it 'does link with vendored frameworks' do
@xcconfig.to_hash['OTHER_LDFLAGS'].should.not.include '-FBananaLib' @xcconfig.to_hash['OTHER_LDFLAGS'].should.include '-framework "Bananalib"'
end end
it 'does link with vendored libraries' do it 'does link with vendored libraries' do
@xcconfig.to_hash['OTHER_LDFLAGS'].should.not.include '-lBananaLib' @xcconfig.to_hash['OTHER_LDFLAGS'].should.include '-l"Bananalib"'
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