Sha256: 4a6186915ddf48cd9653158ad67aa8faffcbe95343df5221ccc61ec14842e79e
Contents?: true
Size: 594 Bytes
Versions: 20
Compression:
Stored size: 594 Bytes
Contents
module Fog module OpenStack class ContainerInfra class Real def create_bay(params) request( :expects => [202, 201, 200], :method => 'POST', :path => "bays", :body => Fog::JSON.encode(params) ) end end class Mock def create_bay(_params) response = Excon::Response.new response.status = 202 response.body = { "uuid" => "746e779a-751a-456b-a3e9-c883d734946f" } response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems