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:
parent
912cd6fae1
commit
7992835fad
1 changed files with 1 additions and 1 deletions
2
Rakefile
2
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
|
||||
|
|
Loading…
Reference in a new issue