Sha256: db58cfbaeb579d113010c4397bd81083bd51eefeda816988593e50145c1b91a2
Contents?: true
Size: 462 Bytes
Versions: 24
Compression:
Stored size: 462 Bytes
Contents
module Fog module Rackspace class Orchestration class Real def list_stack_data(options={}) request( :method => 'GET', :path => request_uri("stacks", options), :expects => 200 ) end end class Mock def list_stack_data stacks = self.data[:stacks].values response(:body => { 'stacks' => stacks }) end end end end end
Version data entries
24 entries across 22 versions & 4 rubygems