Sha256: af27f9f33ef9cd811b2906b7c57167205e23ce8fcb742df9915d50df8588868f
Contents?: true
Size: 527 Bytes
Versions: 4
Compression:
Stored size: 527 Bytes
Contents
module Fog module Orchestration class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems