Sha256: f4a1d28522024d0aea359a6300a27746b3263f1377608953cfba65c983e65f6a

Contents?: true

Size: 555 Bytes

Versions: 11

Compression:

Stored size: 555 Bytes

Contents

require 'integration_test_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

11 entries across 11 versions & 1 rubygems

Version Path
peddler-0.12.5 test/integration/test_subscriptions.rb
peddler-0.12.4 test/integration/test_subscriptions.rb
peddler-0.12.2 test/integration/test_subscriptions.rb
peddler-0.12.1 test/integration/test_subscriptions.rb
peddler-0.12.0 test/integration/test_subscriptions.rb
peddler-0.11.1 test/integration/test_subscriptions.rb
peddler-0.11.0 test/integration/test_subscriptions.rb
peddler-0.10.0 test/integration/test_subscriptions.rb
peddler-0.9.2 test/integration/test_subscriptions.rb
peddler-0.9.1 test/integration/test_subscriptions.rb
peddler-0.9.0 test/integration/test_subscriptions.rb