Sha256: f66a1a48cc9a42adbbaa60e7a23d087aaf097d50e08d6d9d246f0e3121e9e6d3
Contents?: true
Size: 1.02 KB
Versions: 14
Compression:
Stored size: 1.02 KB
Contents
module Fog module Identity class OpenStack class V2 class Real def create_tenant(attributes) request( :expects => [200], :method => 'POST', :path => "tenants", :body => Fog::JSON.encode('tenant' => attributes) ) end # def create_tenant end # class Real class Mock def create_tenant(attributes) response = Excon::Response.new response.status = [200, 204][rand(2)] response.body = { 'tenant' => { 'id' => "df9a815161eba9b76cc748fd5c5af73e", 'description' => attributes[:description] || 'normal tenant', 'enabled' => true, 'name' => attributes[:name] || 'default' } } response end # def create_tenant 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