Sha256: 6159aa38f4e0ad10f7cbdee7094cb613641bb5474c140511890eac430fdf365e
Contents?: true
Size: 561 Bytes
Versions: 38
Compression:
Stored size: 561 Bytes
Contents
module Fog module Joyent class Analytics class Real def list_instrumentations request( :path => "#{@joyent_username}/analytics/instrumentations", :method => "GET", :expects => 200, :idempotent => true ) end end class Mock def list_instrumentations response = Excon::Response.new response.status = 200 response.body = [self.data[:instrumentation]] response end end end end end
Version data entries
38 entries across 36 versions & 6 rubygems