mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
e47c5eb9c4
Workflow Signed-off-by: Nelvin Driz <nelvindriz@live.com>
31 lines
809 B
Ruby
31 lines
809 B
Ruby
module Fog
|
|
module Identity
|
|
class OpenStack
|
|
class Real
|
|
def delete_tenant(id)
|
|
request(
|
|
:expects => [200, 204],
|
|
:method => 'DELETE',
|
|
:path => "tenants/#{id}"
|
|
)
|
|
end # def create_tenant
|
|
end # class Real
|
|
|
|
class Mock
|
|
def delete_tenant(attributes)
|
|
response = Excon::Response.new
|
|
response.status = [200, 204][rand(1)]
|
|
response.body = {
|
|
'tenant' => {
|
|
'id' => '1',
|
|
'description' => 'Has access to everything',
|
|
'enabled' => true,
|
|
'name' => 'admin'
|
|
}
|
|
}
|
|
response
|
|
end # def create_tenant
|
|
end # class Mock
|
|
end # class OpenStack
|
|
end # module Identity
|
|
end # module Fog
|