Sha256: f5b5c3c75e94ffe479da8869a96346fa558a1c0fc7940f1a43222ba6d6b36504
Contents?: true
Size: 548 Bytes
Versions: 5
Compression:
Stored size: 548 Bytes
Contents
module Fog module Storage class OracleCloud class Real def list_containers response = request( :expects => 200, :method => 'GET', :path => "/v1/Storage-#{@identity_domain}?format=json" ) response end end class Mock def list_containers response = Excon::Response.new containers = self.data[:containers].values response.body = containers response end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems