mock tests doesn't have to rely on provider availability

This commit is contained in:
Alexander Lomov 2013-12-26 14:46:16 +03:00
parent 38c760a3a5
commit d480d63b23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ task :mock, :provider do |t, args|
fail 'USAGE: rake mock[<provider>]'
end
provider = args[:provider]
sh("export FOG_MOCK=true PROVIDER=#{provider} && bundle exec shindont tests/#{provider}")
sh("export FOG_MOCK=true && bundle exec shindont tests/#{provider}")
end
desc 'Run live tests against a specific provider'