Commit cc7b8e51 authored by Dieter Komendera's avatar Dieter Komendera

Make specs green after using $(PODS_ROOT)/Headers instead of Pods/Headers.

parent ab3e75a6
...@@ -10,7 +10,7 @@ describe "Pod::Installer" do ...@@ -10,7 +10,7 @@ describe "Pod::Installer" do
end end
it "sets the header search paths where installed Pod headers can be found" do it "sets the header search paths where installed Pod headers can be found" do
@xcconfig['HEADER_SEARCH_PATHS'].should == '"Pods/Headers"' @xcconfig['HEADER_SEARCH_PATHS'].should == '"$(PODS_ROOT)/Headers"'
@xcconfig['ALWAYS_SEARCH_USER_PATHS'].should == 'YES' @xcconfig['ALWAYS_SEARCH_USER_PATHS'].should == 'YES'
end end
......
...@@ -209,8 +209,8 @@ describe "A Pod::Specification, with installed source," do ...@@ -209,8 +209,8 @@ describe "A Pod::Specification, with installed source," do
Pathname.new('ns') + from.basename Pathname.new('ns') + from.basename
end end
@spec.header_search_paths.should == %w{ @spec.header_search_paths.should == %w{
"Pods/Headers/SSZipArchive" "$(PODS_ROOT)/Headers/SSZipArchive"
"Pods/Headers/SSZipArchive/ns" "$(PODS_ROOT)/Headers/SSZipArchive/ns"
} }
end end
...@@ -220,8 +220,8 @@ describe "A Pod::Specification, with installed source," do ...@@ -220,8 +220,8 @@ describe "A Pod::Specification, with installed source," do
Pathname.new('ns') + from.basename Pathname.new('ns') + from.basename
end end
@spec.header_search_paths.should == %w{ @spec.header_search_paths.should == %w{
"Pods/Headers/AnotherRoot" "$(PODS_ROOT)/Headers/AnotherRoot"
"Pods/Headers/AnotherRoot/ns" "$(PODS_ROOT)/Headers/AnotherRoot/ns"
} }
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