module Fog module Joyent class Analytics class Real def describe_analytics @describe_analytics ||= request( :path => "#{@joyent_username}/analytics", :method => "GET", :expects => 200 ) end end class Mock def describe_analytics response = Excon::Response.new response.status = 200 response.body = self.data[:fields] response end end end end end