1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Merge pull request #633 from mkb/master

Fix regression in Rakefile introduced in 70e7ea1
This commit is contained in:
Wesley Beary 2011-12-01 07:29:46 -08:00
commit 113b1a666c

View file

@ -72,11 +72,11 @@ def tests(mocked)
start = Time.now.to_i start = Time.now.to_i
threads = [] threads = []
Thread.main[:results] = [] Thread.main[:results] = []
Fog.providers.each do |provider| Fog.providers.each do |key, value|
threads << Thread.new do threads << Thread.new do
Thread.main[:results] << { Thread.main[:results] << {
:provider => provider, :provider => value,
:success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{provider.downcase}") :success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{key}")
} }
end end
end end