1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/identity/create_role.rb

38 lines
763 B
Ruby
Raw Normal View History

2012-02-24 06:38:05 -05:00
module Fog
module Identity
class OpenStack
class Real
def create_role(name)
data = {
'role' => {
'name' => name
}
}
request(
:body => MultiJson.encode(data),
2012-02-24 06:38:05 -05:00
:expects => [200, 202],
:method => 'POST',
:path => '/OS-KSADM/roles'
)
end
end
class Mock
def create_role(name)
data = {
'id' => Fog::Mock.random_hex(32),
'name' => name
2012-02-24 06:38:05 -05:00
}
self.data[:roles][data['id']] = data
2012-05-28 17:45:22 -04:00
Excon::Response.new(
:body => { 'role' => data },
:status => 202
)
2012-02-24 06:38:05 -05:00
end
end
end
end
end