test/unit/mws/test_finances_client.rb in peddler-2.0.4 vs test/unit/mws/test_finances_client.rb in peddler-2.1.0
- old
+ new
@@ -6,11 +6,11 @@
class TestMWSFinancesClient < MiniTest::Test
def setup
@client = MWS::Finances::Client.new
end
- def test_lists_financial_event_groups
+ def test_listing_financial_event_groups
operation = {
'Action' => 'ListFinancialEventGroups',
'FinancialEventGroupStartedAfter' => '2015-01-01'
}
@@ -19,11 +19,11 @@
end
assert_equal operation, @client.operation
end
- def test_lists_financial_event_groups_by_next_token
+ def test_listing_financial_event_groups_by_next_token
operation = {
'Action' => 'ListFinancialEventGroupsByNextToken',
'NextToken' => '1'
}
@@ -32,11 +32,11 @@
end
assert_equal operation, @client.operation
end
- def test_lists_financial_events
+ def test_listing_financial_events
operation = {
'Action' => 'ListFinancialEvents',
'AmazonOrderId' => '123'
}
@@ -45,11 +45,11 @@
end
assert_equal operation, @client.operation
end
- def test_lists_financial_events_by_next_token
+ def test_listing_financial_events_by_next_token
operation = {
'Action' => 'ListFinancialEventsByNextToken',
'NextToken' => '1'
}
@@ -58,10 +58,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