Sha256: 712b93907eb30998d01b1350f24f8550ec3e5c03de0718755d0d9b1b30586bbb

Contents?: true

Size: 449 Bytes

Versions: 3

Compression:

Stored size: 449 Bytes

Contents

# frozen_string_literal: true

require 'integration_helper'
require 'mws/recommendations'

class TestRecommendations < IntegrationTest
  def test_lists_recommendations
    clients.each do |client|
      res = client.list_recommendations(client.marketplace.id)
      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

3 entries across 3 versions & 1 rubygems

Version Path
peddler-2.0.4 test/integration/test_recommendations.rb
peddler-2.0.3 test/integration/test_recommendations.rb
peddler-2.0.0 test/integration/test_recommendations.rb