Sha256: 2472795bb8fed7ccb2c75dd0b85b8c20984717a6927d87c6f330c65c84af4b78

Contents?: true

Size: 364 Bytes

Versions: 1

Compression:

Stored size: 364 Bytes

Contents

module Fog
  module Tasks 
    class Wunderlist 
      class Real

        def list_lists
          request(
            :expects  => [200],
            :method   => 'GET',
            :path     => '/me/lists'
          )
        end

      end

      class Mock

        def list_lists
          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/list_lists.rb