mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
23 lines
552 B
Ruby
23 lines
552 B
Ruby
module Fog
|
|
module Compute
|
|
class Ecloud
|
|
class Real
|
|
basic_request :get_admin_organization
|
|
end
|
|
|
|
class Mock
|
|
def get_admin_organization(uri)
|
|
organization_id = id_from_uri(uri)
|
|
admin_organization = self.data[:admin_organizations][organization_id]
|
|
|
|
if admin_organization
|
|
body = Fog::Ecloud.slice(admin_organization, :id, :organization_id)
|
|
|
|
response(:body => body)
|
|
else response(:status => 404) # ?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|