1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/joyent/requests/analytics/create_instrumentation.rb
2014-01-21 16:24:24 +00:00

25 lines
590 B
Ruby

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