Sha256: a0fed5a941ad02bec96260ff7e702fb5658b23714e6591a35659fee35abb102c
Contents?: true
Size: 500 Bytes
Versions: 86
Compression:
Stored size: 500 Bytes
Contents
module Fog module Compute class Joyent class Mock def get_dataset(id) if ds = self.data[:datasets][id] res = Excon::Response.new res.status = 200 res.body = ds else raise Excon::Errors::NotFound end end end class Real def get_dataset request( :method => "GET", :path => "/my/datasets" ) end end end end end
Version data entries
86 entries across 86 versions & 16 rubygems