Sha256: 0ee6e1f03a1626d857d28fbdd8ee6adb1a1a44b25cb1f551350d701f49d5726f

Contents?: true

Size: 537 Bytes

Versions: 12

Compression:

Stored size: 537 Bytes

Contents

require 'helper'
require 'mws/subscriptions'

class TestSubscriptions < 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-1.3.0 test/integration/test_subscriptions.rb
peddler-1.2.0 test/integration/test_subscriptions.rb
peddler-1.1.1 test/integration/test_subscriptions.rb
peddler-1.1.0 test/integration/test_subscriptions.rb
peddler-1.0.2 test/integration/test_subscriptions.rb
peddler-1.0.1 test/integration/test_subscriptions.rb
peddler-1.0.0 test/integration/test_subscriptions.rb
peddler-0.19.0 test/integration/test_subscriptions.rb
peddler-0.18.0 test/integration/test_subscriptions.rb
peddler-0.17.1 test/integration/test_subscriptions.rb
peddler-0.17.0 test/integration/test_subscriptions.rb
peddler-0.16.0 test/integration/test_subscriptions.rb