Sha256: d3632803ae9a8f193bb7aa8609bb06075ea2f8f99004f3037a4fc18a810a7ed5
Contents?: true
Size: 511 Bytes
Versions: 1
Compression:
Stored size: 511 Bytes
Contents
module Fog module Tasks class Wunderlist class Real def delete_list(id) request( :expects => [200], :method => 'DELETE', :path => "/#{id}" ) end end class Mock def delete_list(id) Fog::Mock.not_implemented #response = Excon::Response.new #response.status = 200 #response.body = { #} #response end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-wunderlist-0.1 | lib/fog/wunderlist/requests/tasks/delete_list.rb |