1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

removing listoperations as it doesn't exist anymore.

This commit is contained in:
Nat Welch 2013-04-29 12:16:24 -07:00
parent a7badd8cdc
commit c8a22dbc26
2 changed files with 0 additions and 30 deletions

View file

@ -17,7 +17,6 @@ module Fog
request :list_images
request :list_machine_types
request :list_networks
request :list_operations
request :list_zones
request :get_server

View file

@ -1,29 +0,0 @@
module Fog
module Compute
class Google
class Mock
def list_operations
Fog::Mock.not_implemented
end
end
class Real
def list_operations
api_method = @compute.operations.list
parameters = {
'project' => @project
}
result = self.build_result(api_method, parameters)
response = self.build_response(result)
end
end
end
end
end