Commit 7d994301 authored by Olivier Halligon's avatar Olivier Halligon

Fix #2832 - integration specs for date&time-dependant output

parent 9a41405d
...@@ -187,6 +187,7 @@ begin ...@@ -187,6 +187,7 @@ begin
task :rebuild_integration_fixtures do task :rebuild_integration_fixtures do
title 'Running Integration tests' title 'Running Integration tests'
sh 'rm -rf spec/cocoapods-integration-specs/tmp' sh 'rm -rf spec/cocoapods-integration-specs/tmp'
title 'Building all the fixtures'
puts `bundle exec bacon spec/integration.rb` puts `bundle exec bacon spec/integration.rb`
title 'Storing fixtures' title 'Storing fixtures'
......
Subproject commit d1cd4ef3462b562a2c0af97ec0c232f2e4b4823a Subproject commit 365a0c8d93de662c019d6dbf3131f65842952357
...@@ -106,6 +106,8 @@ describe_cli 'pod' do ...@@ -106,6 +106,8 @@ describe_cli 'pod' do
s.replace_path `which git`.chomp, 'GIT_BIN' s.replace_path `which git`.chomp, 'GIT_BIN'
s.replace_path `which hg`.chomp, 'HG_BIN' s.replace_path `which hg`.chomp, 'HG_BIN'
s.replace_user_path 'Library/Caches/CocoaPods', 'CACHES_DIR' s.replace_user_path 'Library/Caches/CocoaPods', 'CACHES_DIR'
s.replace_path %r(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d [-+]\d{4}), '<#DATE#>'
s.replace_path %r(\(Took \d+.\d+ seconds\)), '(Took <#DURATION#> seconds)'
end end
describe 'Pod install' do describe 'Pod install' 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