test/unit/mws/test_sellers_client.rb in peddler-2.0.4 vs test/unit/mws/test_sellers_client.rb in peddler-2.1.0
- old
+ new
@@ -6,11 +6,11 @@
class TestMWSSellersClient < MiniTest::Test
def setup
@client = MWS::Sellers::Client.new
end
- def test_lists_marketplace_participations
+ def test_listing_marketplace_participations
operation = {
'Action' => 'ListMarketplaceParticipations'
}
@client.stub(:run, nil) do
@@ -18,11 +18,11 @@
end
assert_equal operation, @client.operation
end
- def test_lists_marketplace_participations_by_next_token
+ def test_listing_marketplace_participations_by_next_token
operation = {
'Action' => 'ListMarketplaceParticipationsByNextToken',
'NextToken' => '1'
}
@@ -31,10 +31,10 @@
end
assert_equal operation, @client.operation
end
- def test_gets_service_status
+ def test_getting_service_status
operation = {
'Action' => 'GetServiceStatus'
}
@client.stub(:run, nil) do