Sha256: fd168c76b650d44cf650b9a22ad1f35ae5ce8d9b74f4e2a224b92ee9b3473973

Contents?: true

Size: 436 Bytes

Versions: 11

Compression:

Stored size: 436 Bytes

Contents

require 'integration_test_helper'
require 'mws/recommendations'

class TestRecommendations < IntegrationTest
  def test_lists_recommendations
    clients.each do |client|
      res = client.list_recommendations
      skip unless content = res.parse
      refute_empty content
    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_recommendations.rb
peddler-0.12.4 test/integration/test_recommendations.rb
peddler-0.12.2 test/integration/test_recommendations.rb
peddler-0.12.1 test/integration/test_recommendations.rb
peddler-0.12.0 test/integration/test_recommendations.rb
peddler-0.11.1 test/integration/test_recommendations.rb
peddler-0.11.0 test/integration/test_recommendations.rb
peddler-0.10.0 test/integration/test_recommendations.rb
peddler-0.9.2 test/integration/test_recommendations.rb
peddler-0.9.1 test/integration/test_recommendations.rb
peddler-0.9.0 test/integration/test_recommendations.rb