Sha256: bb99360c239e9cadfef482b31a029ad691ce31123a21652037f2be84fb496ce3
Contents?: true
Size: 710 Bytes
Versions: 20
Compression:
Stored size: 710 Bytes
Contents
module Fog module Identity class OpenStack class V2 class Real def delete_role(role_id) request( :expects => [200, 204], :method => 'DELETE', :path => "/OS-KSADM/roles/#{role_id}" ) end end class Mock def delete_role(role_id) response = Excon::Response.new if self.data[:roles][role_id] self.data[:roles].delete(role_id) response.status = 204 response else raise Fog::Identity::OpenStack::NotFound end end end end # class V2 end end end
Version data entries
20 entries across 20 versions & 3 rubygems