Sha256: b44400dae4e51debbdb7a8e9e1dc4cbffca510cce7c86cc7029defd458c33297
Contents?: true
Size: 525 Bytes
Versions: 20
Compression:
Stored size: 525 Bytes
Contents
module Fog module OpenStack class Orchestration class Real def show_stack_details(name, id) request( :method => 'GET', :path => "stacks/#{name}/#{id}", :expects => 200 ) end end class Mock def show_stack_details(_name, _id) stack = data[:stack].values Excon::Response.new( :body => {'stack' => stack}, :status => 200 ) end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems