fix mock toggling in rakefile

This commit is contained in:
Wesley Beary 2009-10-14 09:54:49 -07:00
parent 617d53dd23
commit f554243137
1 changed files with 2 additions and 2 deletions

View File

@ -39,12 +39,12 @@ end
namespace :specs do
task :with_mocking do
Fog.mocking = true
Fog.mock!
Rake::Task[:spec].invoke
end
task :without_mocking do
Fog.mocking = true
Fog.mock!
Rake::Task[:spec].invoke
end