Sha256: 7d85b904137256eb24d2b3a0f908e33a932bc27a52ad504473081ad585735d2c

Contents?: true

Size: 550 Bytes

Versions: 12

Compression:

Stored size: 550 Bytes

Contents

require 'integration_helper'
require 'mws/subscriptions'

class SubscriptionsTest < IntegrationTest
  def test_lists_registered_destinations
    clients.each do |client|
      res = client.list_registered_destinations
      refute_empty res.parse
    end
  end


  def test_lists_subscriptions
    clients.each do |client|
      res = client.list_subscriptions
      refute_empty res.parse
    end
  end

  def test_gets_service_status
    clients.each do |client|
      res = client.get_service_status
      refute_empty res.parse
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
peddler-0.8.0 test/integration/test_subscriptions.rb
peddler-0.7.11 test/integration/test_subscriptions.rb
peddler-0.7.10 test/integration/test_subscriptions.rb
peddler-0.7.9 test/integration/test_subscriptions.rb
peddler-0.7.8 test/integration/test_subscriptions.rb
peddler-0.7.7 test/integration/test_subscriptions.rb
peddler-0.7.6 test/integration/test_subscriptions.rb
peddler-0.7.5 test/integration/test_subscriptions.rb
peddler-0.7.3 test/integration/test_subscriptions.rb
peddler-0.7.2 test/integration/test_subscriptions.rb
peddler-0.7.1 test/integration/test_subscriptions.rb
peddler-0.7.0 test/integration/test_subscriptions.rb