Sha256: f471cf60c84c35dfa1b25d40462a6381ae1bf7ca489aa19f348566560a6e408e
Contents?: true
Size: 623 Bytes
Versions: 11
Compression:
Stored size: 623 Bytes
Contents
def test connection = Fog::Compute.new({ :provider => "Google" }) rawdisk = { :source => nil, # Google Cloud Storage URL pointing to the disk image. (e.g. http://storage.googleapis.com/test/test.tar.gz) :container_type => 'TAR', } # Can't test this unless the 'source' points to a valid URL return if rawdisk[:source].nil? img = connection.images.create(:name => 'test-image', :description => 'Test image (via fog)', :raw_disk => rawdisk) img.reload # will raise if image was not saved correctly end
Version data entries
11 entries across 9 versions & 3 rubygems