Commit a9a1d332 authored by Fabio Pelosin's avatar Fabio Pelosin

[Specs] Fix minor failure on Travis.

parent 1709e046
...@@ -40,7 +40,8 @@ describe Pod::LocalPod do ...@@ -40,7 +40,8 @@ describe Pod::LocalPod do
it 'returns an expanded list the files to clean' do it 'returns an expanded list the files to clean' do
clean_files = @pod.clean_files.map { |p| p.to_s } clean_files = @pod.clean_files.map { |p| p.to_s }
clean_files.should.include "#{@sandbox.root}/BananaLib/.git/config" clean_files.should.include "#{@sandbox.root}/BananaLib/.git/config"
clean_files.reject { |p| p.to_s.include?('/.git/') }.should == ["#{@sandbox.root}/BananaLib/sub-dir/sub-dir-2/somefile.txt"] clean_files_without_hidden = clean_files.reject { |p| p.to_s.include?('/.') }
clean_files_without_hidden.should == ["#{@sandbox.root}/BananaLib/sub-dir/sub-dir-2/somefile.txt"]
end end
it 'returns an expanded list of resources, relative to the sandbox root' do it 'returns an expanded list of resources, relative to the sandbox root' do
......
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