Sha256: 0f5d0fcb2d347d2dc32101ed8c09790055d931cee77bcd10c143693c30d14f82
Contents?: true
Size: 556 Bytes
Versions: 34
Compression:
Stored size: 556 Bytes
Contents
module Fog module SharedFileSystem class OpenStack class Real def get_share(id) request( :expects => 200, :method => 'GET', :path => "shares/#{id}" ) end end class Mock def get_share(id) response = Excon::Response.new response.status = 200 share = data[:share_updated] || data[:shares_detail].first share['id'] = id response.body = share response end end end end end
Version data entries
34 entries across 32 versions & 3 rubygems