Sha256: 6dbe045550b52d59712234de4fcbd008c7c8fec05901093d62d9401e4626a494
Contents?: true
Size: 562 Bytes
Versions: 22
Compression:
Stored size: 562 Bytes
Contents
module Fog module OpenStack class SharedFileSystem class Real def list_shares_detail(options = {}) request( :expects => 200, :method => 'GET', :path => 'shares/detail', :query => options ) end end class Mock def list_shares_detail(_options = {}) response = Excon::Response.new response.status = 200 response.body = {'shares' => data[:shares_detail]} response end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems