Sha256: 3bc554b02e9d1192cbfcad647f00b791dfe079ce8659d5ddc93bd0d3fb91832f
Contents?: true
Size: 747 Bytes
Versions: 14
Compression:
Stored size: 747 Bytes
Contents
module Fog module Identity class OpenStack class V2 class Real def get_role(id) request( :expects => [200, 204], :method => 'GET', :path => "/OS-KSADM/roles/#{id}" ) end end class Mock def get_role(id) response = Excon::Response.new if data = self.data[:roles][id] response.status = 200 response.body = {'role' => data} response else raise Fog::Identity::OpenStack::NotFound end end end # class Mock end # class V2 end # class OpenStack end # module Identity end # module Fog
Version data entries
14 entries across 14 versions & 1 rubygems