Sha256: 2ccc12c8750dbef5dccd3292dd4f503195c325536c4299bd54416d6db0827687
Contents?: true
Size: 369 Bytes
Versions: 1
Compression:
Stored size: 369 Bytes
Contents
module Fog module Tasks class Wunderlist class Real def get_task(id) request( :expects => [200], :method => 'GET', :path => "/me/#{id}" ) end end class Mock def get_tasks(id) Fog::Mock.not_implemented 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/get_task.rb |