Sha256: 7ed20dad26562fc7afc882b65bceaa92b3d3173ef8d50f313ea8b4e03398745b
Contents?: true
Size: 606 Bytes
Versions: 20
Compression:
Stored size: 606 Bytes
Contents
module Fog module OpenStack class ContainerInfra class Real def create_cluster(params) request( :expects => [202, 201, 200], :method => 'POST', :path => "clusters", :body => Fog::JSON.encode(params) ) end end class Mock def create_cluster(_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