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
end
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'
end
......
......@@ -209,8 +209,8 @@ describe "A Pod::Specification, with installed source," do
Pathname.new('ns') + from.basename
end
@spec.header_search_paths.should == %w{
"Pods/Headers/SSZipArchive"
"Pods/Headers/SSZipArchive/ns"
"$(PODS_ROOT)/Headers/SSZipArchive"
"$(PODS_ROOT)/Headers/SSZipArchive/ns"
}
end
......@@ -220,8 +220,8 @@ describe "A Pod::Specification, with installed source," do
Pathname.new('ns') + from.basename
end
@spec.header_search_paths.should == %w{
"Pods/Headers/AnotherRoot"
"Pods/Headers/AnotherRoot/ns"
"$(PODS_ROOT)/Headers/AnotherRoot"
"$(PODS_ROOT)/Headers/AnotherRoot/ns"
}
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