Sha256: 2d6506f5d5787b986b255db6a944924568c86c3ac0297ad3e1b6d81772de43cb
Contents?: true
Size: 688 Bytes
Versions: 20
Compression:
Stored size: 688 Bytes
Contents
module Fog module OpenStack class SharedFileSystem class Real def delete_share(id) request( :expects => 202, :method => 'DELETE', :path => "shares/#{id}" ) end end class Mock def delete_share(id) response = Excon::Response.new response.status = 202 share = data[:share_updated] || data[:shares_detail].first.dup share['id'] = id share['links']['self'] = "https://127.0.0.1:8786/v2/shares/#{id}" response.body = {'share' => share} response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems