Sha256: fa48d8c322e31cc733c5f3efa4398c493b781d90085c5644ff97a037f6deae04
Contents?: true
Size: 555 Bytes
Versions: 19
Compression:
Stored size: 555 Bytes
Contents
module Fog module Orchestration class OpenStack 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 = self.data[:stacks].values Excon::Response.new( :body => { 'stacks' => stacks }, :status => 200 ) end end end end end
Version data entries
19 entries across 19 versions & 3 rubygems