mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
7 lines
157 B
Ruby
7 lines
157 B
Ruby
|
def test
|
||
|
connection = Fog::Compute.new({ :provider => "Google" })
|
||
|
|
||
|
# If this doesn't raise an exception, everything is good.
|
||
|
connection.images.all
|
||
|
end
|