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