1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
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
|