1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/google/Rakefile
2013-07-24 18:46:20 -07:00

17 lines
396 B
Ruby

namespace :google do
namespace :smoke do
desc "Smoke tests for Google Compute Engine."
task :compute do
require 'fog'
puts "These smoke tests assume you have a file at ~/.fog which has your credentials for connecting to GCE."
Dir.glob("./examples/*.rb").each do |file|
puts "Running #{file}:"
require file
test()
end
end
end
end