Sha256: 98718a203f3b4258656dfe0c91a11dc101593724989c873c71b8314fe1c331ab
Contents?: true
Size: 1.39 KB
Versions: 4
Compression:
Stored size: 1.39 KB
Contents
require 'helper' require 'mws/recommendations/client' class TestMWSRecommendationsClient < MiniTest::Test def setup @client = MWS::Recommendations::Client.new end def test_gets_last_updated_time_for_recommendations operation = { 'Action' => 'GetLastUpdatedTimeForRecommendations', 'MarketplaceId' => '1' } @client.stub(:run, nil) do @client.get_last_updated_time_for_recommendations('1') end assert_equal operation, @client.operation end def test_lists_recommendations operation = { 'Action' => 'ListRecommendations', 'CategoryQueryList.CategoryQuery.1.FilterOptions.FilterOption.1.Foo' => '1', 'MarketplaceId' => '123' } @client.marketplace_id = '123' @client.stub(:run, nil) do @client.list_recommendations(category_query_list: [{ 'Foo' => '1' }]) end assert_equal operation, @client.operation end def test_lists_recommendations_by_next_token operation = { 'Action' => 'ListRecommendationsByNextToken', 'NextToken' => '1' } @client.stub(:run, nil) do @client.list_recommendations_by_next_token('1') end assert_equal operation, @client.operation end def test_gets_service_status operation = { 'Action' => 'GetServiceStatus' } @client.stub(:run, nil) do @client.get_service_status end assert_equal operation, @client.operation end end
Version data entries
4 entries across 4 versions & 1 rubygems