From 7992835fad409d48fb3ee11db969efaa2976a297 Mon Sep 17 00:00:00 2001 From: Daniel Aragao Date: Tue, 17 Jun 2014 10:58:17 +1000 Subject: [PATCH] mock wasn't being set with FOG_MOCK env variable. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3f104305d..0446c364a 100644 --- a/Rakefile +++ b/Rakefile @@ -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