mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
17 lines
396 B
Ruby
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
|