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
1 changed files with 1 additions and 1 deletions

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