mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
The Transfer object used to represent all movements of funds in Stripe. It split in three resources: - Transfer: this describes the movement of funds between Stripe accounts and is specific to Stripe Connect. - Payout: this describes the movement of funds from a Stripe account to a bank account, debit card or any future payout method. - RecipientTransfer: this describes the movement of funds from a Stripe account to a Recipient's card or Bank Account. This is here for legacy reasons and can only be accessed from an expanded BalanceTransaction. This change is behind an API version so old API versions would still use the Transfer object for everything while new API version would see the split. This applies beyond the new object as some properties/methods are removed from Transfer and other properties are renamed on other objects.
51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
module Stripe
|
|
class PayoutTest < Test::Unit::TestCase
|
|
FIXTURE = API_FIXTURES.fetch(:payout)
|
|
|
|
should "be listable" do
|
|
payouts = Stripe::Payout.list
|
|
assert_requested :get, "#{Stripe.api_base}/v1/payouts"
|
|
assert payouts.data.kind_of?(Array)
|
|
assert payouts.data[0].kind_of?(Stripe::Payout)
|
|
end
|
|
|
|
should "be retrievable" do
|
|
payout = Stripe::Payout.retrieve(FIXTURE[:id])
|
|
assert_requested :get, "#{Stripe.api_base}/v1/payouts/#{FIXTURE[:id]}"
|
|
assert payout.kind_of?(Stripe::Payout)
|
|
end
|
|
|
|
should "be creatable" do
|
|
payout = Stripe::Payout.create(
|
|
amount: 100,
|
|
currency: "USD"
|
|
)
|
|
assert_requested :post, "#{Stripe.api_base}/v1/payouts"
|
|
assert payout.kind_of?(Stripe::Payout)
|
|
end
|
|
|
|
should "be saveable" do
|
|
payout = Stripe::Payout.retrieve(FIXTURE[:id])
|
|
payout.metadata['key'] = 'value'
|
|
payout.save
|
|
assert_requested :post, "#{Stripe.api_base}/v1/payouts/#{FIXTURE[:id]}"
|
|
end
|
|
|
|
should "be updateable" do
|
|
payout = Stripe::Payout.update(FIXTURE[:id], metadata: {foo: 'bar'})
|
|
assert_requested :post, "#{Stripe.api_base}/v1/payouts/#{FIXTURE[:id]}"
|
|
assert payout.kind_of?(Stripe::Payout)
|
|
end
|
|
|
|
context "#cancel" do
|
|
should "cancel a payout" do
|
|
payout = Stripe::Payout.retrieve(FIXTURE[:id])
|
|
payout = payout.cancel
|
|
assert payout.kind_of?(Stripe::Payout)
|
|
end
|
|
end
|
|
end
|
|
end
|