Sha256: 3c109525a3e026f50721894b52b841e34ec823a938216171508151c4f862694c
Contents?: true
Size: 549 Bytes
Versions: 20
Compression:
Stored size: 549 Bytes
Contents
module Fog module OpenStack class Orchestration class Real def list_stack_data(options = {}) request( :method => 'GET', :path => 'stacks', :expects => 200, :query => options ) end end class Mock def list_stack_data(_options = {}) stacks = data[:stacks].values Excon::Response.new( :body => {'stacks' => stacks}, :status => 200 ) end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems