Sha256: c19441851bb468d6dc2b4c948f0631e1c6e08ea6d8c3ddc33fff359662534d03
Contents?: true
Size: 588 Bytes
Versions: 10
Compression:
Stored size: 588 Bytes
Contents
# All examples presume that you have a ~/.fog credentials file set up. # More info on it can be found here: http://fog.io/about/getting_started.html require "bundler" Bundler.require(:default, :development) # Uncomment this if you want to make real requests to GCE (you _will_ be billed!) # WebMock.disable! def test connection = Fog::Compute.new(:provider => "Google") server = connection.servers.bootstrap server.wait_for { sshable? } raise "Could not bootstrap sshable server." unless server.ssh("whoami") raise "Could not delete server." unless server.destroy end test
Version data entries
10 entries across 10 versions & 1 rubygems