Sha256: 48fea4178f9114147d884a6b7a8661d723c0dd99494b042a4afd672d5285d8cd

Contents?: true

Size: 583 Bytes

Versions: 10

Compression:

Stored size: 583 Bytes

Contents

require 'integration_helper'
require 'mws/recommendations'

class RecommendationsTest < IntegrationTest
  def test_gets_last_updated_time_for_recommendations
    clients.each do |client|
      res = client.get_last_updated_time_for_recommendations
      refute_empty res.parse
    end
  end

  def test_lists_recommendations
    clients.each do |client|
      res = client.list_recommendations
      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

10 entries across 10 versions & 1 rubygems

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