Sha256: b8c1c7423084cbac2b81a384b03af73da29cf670a34e4bf83763902f54bf3947

Contents?: true

Size: 426 Bytes

Versions: 4

Compression:

Stored size: 426 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
      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

4 entries across 4 versions & 1 rubygems

Version Path
peddler-1.6.7 test/integration/test_recommendations.rb
peddler-1.6.6 test/integration/test_recommendations.rb
peddler-1.6.5 test/integration/test_recommendations.rb
peddler-1.6.4 test/integration/test_recommendations.rb