Sha256: de197ec52e7948cc364aa0660b875f5886c471fda2a087734711220b4de9d0a2
Contents?: true
Size: 805 Bytes
Versions: 91
Compression:
Stored size: 805 Bytes
Contents
module Fog module Identity class OpenStack class Real def update_tenant(id, attributes) request( :expects => [200], :method => 'PUT', :path => "tenants/#{id}", :body => Fog::JSON.encode({ 'tenant' => attributes }) ) end # def create_tenant end # class Real class Mock def update_tenant(id, attributes) response = Excon::Response.new response.status = [200, 204][rand(1)] attributes = {'enabled' => true, 'id' => '1'}.merge(attributes) response.body = { 'tenant' => attributes } response end # def create_tenant end # class Mock end # class OpenStack end # module Identity end # module Fog
Version data entries
91 entries across 91 versions & 10 rubygems