Sha256: cfe698f12900bdd48ca8c47af745421172fb6fe5a70fca9c13c376b8efdba2b8
Contents?: true
Size: 562 Bytes
Versions: 34
Compression:
Stored size: 562 Bytes
Contents
module Fog module SharedFileSystem class OpenStack 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
34 entries across 32 versions & 3 rubygems