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

mock wasn't being set with FOG_MOCK env variable.

This commit is contained in:
Daniel Aragao 2014-06-17 10:58:17 +10:00
parent 912cd6fae1
commit 7992835fad

View file

@ -55,7 +55,7 @@ Rake::TestTask.new do |t|
end
namespace :test do
mock = 'true' || ENV['FOG_MOCK']
mock = ENV['FOG_MOCK'] || 'true'
task :travis do
sh("export FOG_MOCK=#{mock} && bundle exec shindont")
end