test/integration/test_subscriptions.rb in peddler-2.0.4 vs test/integration/test_subscriptions.rb in peddler-2.1.0
- old
+ new
@@ -2,24 +2,24 @@
require 'integration_helper'
require 'mws/subscriptions'
class TestSubscriptions < IntegrationTest
- def test_lists_registered_destinations
+ def test_listing_registered_destinations
clients.each do |client|
res = client.list_registered_destinations(client.marketplace.id)
refute_empty res.parse
end
end
- def test_lists_subscriptions
+ def test_listing_subscriptions
clients.each do |client|
res = client.list_subscriptions(client.marketplace.id)
refute_empty res.parse
end
end
- def test_gets_service_status
+ def test_getting_service_status
clients.each do |client|
res = client.get_service_status
refute_empty res.parse
end
end