stripe 4.18.1 → 5.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +232 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -16
- data/README.md +168 -63
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +7 -3
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +29 -26
- data/lib/stripe/api_operations/request.rb +82 -6
- data/lib/stripe/api_operations/save.rb +7 -4
- data/lib/stripe/api_resource.rb +27 -2
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +24 -3
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +34 -5
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +8 -6
- data/lib/stripe/object_types.rb +108 -0
- data/lib/stripe/{account.rb → resources/account.rb} +23 -26
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/{alipay_account.rb → resources/alipay_account.rb} +1 -1
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/{application_fee_refund.rb → resources/application_fee_refund.rb} +3 -2
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/{bank_account.rb → resources/bank_account.rb} +5 -6
- data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
- data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +5 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/{capability.rb → resources/capability.rb} +3 -2
- data/lib/stripe/{card.rb → resources/card.rb} +5 -7
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +27 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +52 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/{discount.rb → resources/discount.rb} +2 -1
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +2 -1
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +7 -12
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +2 -1
- data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
- data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
- data/lib/stripe/resources/issuing/card_details.rb +10 -0
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/{login_link.rb → resources/login_link.rb} +2 -1
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/{payment_method.rb → resources/payment_method.rb} +14 -5
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +2 -1
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +2 -1
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/{radar → resources/radar}/early_fraud_warning.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
- data/lib/stripe/{reversal.rb → resources/reversal.rb} +4 -3
- data/lib/stripe/{review.rb → resources/review.rb} +8 -3
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/resources/shipping_rate.rb +12 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
- data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
- data/lib/stripe/{source.rb → resources/source.rb} +20 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +2 -1
- data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -11
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/{tax_id.rb → resources/tax_id.rb} +2 -1
- data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
- data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/{topup.rb → resources/topup.rb} +8 -3
- data/lib/stripe/{transfer.rb → resources/transfer.rb} +9 -8
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +2 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
- data/lib/stripe/resources.rb +91 -0
- data/lib/stripe/stripe_client.rb +617 -243
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +30 -25
- data/lib/stripe/stripe_response.rb +87 -27
- data/lib/stripe/util.rb +43 -103
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +39 -8
- data/lib/stripe.rb +41 -205
- data/stripe.gemspec +19 -5
- metadata +109 -287
- data/.editorconfig +0 -10
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -42
- data/.rubocop_todo.yml +0 -38
- data/.travis.yml +0 -43
- data/.vscode/extensions.json +0 -7
- data/.vscode/settings.json +0 -8
- data/lib/stripe/application_fee.rb +0 -24
- data/lib/stripe/bitcoin_transaction.rb +0 -15
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/credit_note.rb +0 -18
- data/lib/stripe/customer.rb +0 -93
- data/lib/stripe/dispute.rb +0 -23
- data/lib/stripe/invoice.rb +0 -49
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/issuing/card_details.rb +0 -9
- data/lib/stripe/order.rb +0 -32
- data/lib/stripe/payment_intent.rb +0 -30
- data/lib/stripe/payout.rb +0 -24
- data/lib/stripe/subscription_item.rb +0 -18
- data/lib/stripe/subscription_schedule.rb +0 -35
- data/lib/stripe/subscription_schedule_revision.rb +0 -34
- data/lib/stripe/usage_record.rb +0 -23
- data/test/api_stub_helpers.rb +0 -1
- data/test/openapi/README.md +0 -9
- data/test/stripe/account_link_test.rb +0 -18
- data/test/stripe/account_test.rb +0 -428
- data/test/stripe/alipay_account_test.rb +0 -37
- data/test/stripe/api_operations_test.rb +0 -80
- data/test/stripe/api_resource_test.rb +0 -523
- data/test/stripe/apple_pay_domain_test.rb +0 -46
- data/test/stripe/application_fee_refund_test.rb +0 -37
- data/test/stripe/application_fee_test.rb +0 -58
- data/test/stripe/balance_test.rb +0 -13
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/capability_test.rb +0 -45
- data/test/stripe/charge_test.rb +0 -80
- data/test/stripe/checkout/session_test.rb +0 -41
- data/test/stripe/country_spec_test.rb +0 -20
- data/test/stripe/coupon_test.rb +0 -61
- data/test/stripe/credit_note_test.rb +0 -61
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_test.rb +0 -226
- data/test/stripe/dispute_test.rb +0 -51
- data/test/stripe/ephemeral_key_test.rb +0 -93
- data/test/stripe/errors_test.rb +0 -20
- data/test/stripe/exchange_rate_test.rb +0 -20
- data/test/stripe/file_link_test.rb +0 -41
- data/test/stripe/file_test.rb +0 -97
- data/test/stripe/file_upload_test.rb +0 -79
- data/test/stripe/invoice_item_test.rb +0 -66
- data/test/stripe/invoice_line_item_test.rb +0 -8
- data/test/stripe/invoice_test.rb +0 -213
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/issuing/authorization_test.rb +0 -72
- data/test/stripe/issuing/card_test.rb +0 -62
- data/test/stripe/issuing/cardholder_test.rb +0 -53
- data/test/stripe/issuing/dispute_test.rb +0 -45
- data/test/stripe/issuing/transaction_test.rb +0 -48
- data/test/stripe/list_object_test.rb +0 -156
- data/test/stripe/login_link_test.rb +0 -37
- data/test/stripe/oauth_test.rb +0 -88
- data/test/stripe/order_return_test.rb +0 -21
- data/test/stripe/order_test.rb +0 -82
- data/test/stripe/payment_intent_test.rb +0 -107
- data/test/stripe/payment_method_test.rb +0 -84
- data/test/stripe/payout_test.rb +0 -57
- data/test/stripe/person_test.rb +0 -46
- data/test/stripe/plan_test.rb +0 -98
- data/test/stripe/product_test.rb +0 -59
- data/test/stripe/radar/early_fraud_warning_test.rb +0 -22
- data/test/stripe/radar/value_list_item_test.rb +0 -48
- data/test/stripe/radar/value_list_test.rb +0 -61
- data/test/stripe/recipient_test.rb +0 -62
- data/test/stripe/refund_test.rb +0 -39
- data/test/stripe/reporting/report_run_test.rb +0 -33
- data/test/stripe/reporting/report_type_test.rb +0 -22
- data/test/stripe/reversal_test.rb +0 -43
- data/test/stripe/review_test.rb +0 -27
- data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
- data/test/stripe/sku_test.rb +0 -60
- data/test/stripe/source_test.rb +0 -99
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/stripe_client_test.rb +0 -842
- data/test/stripe/stripe_object_test.rb +0 -525
- data/test/stripe/stripe_response_test.rb +0 -49
- data/test/stripe/subscription_item_test.rb +0 -63
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_test.rb +0 -116
- data/test/stripe/subscription_test.rb +0 -80
- data/test/stripe/tax_id_test.rb +0 -31
- data/test/stripe/tax_rate_test.rb +0 -43
- data/test/stripe/terminal/connection_token_test.rb +0 -16
- data/test/stripe/terminal/location_test.rb +0 -68
- data/test/stripe/terminal/reader_test.rb +0 -62
- data/test/stripe/three_d_secure_test.rb +0 -23
- data/test/stripe/topup_test.rb +0 -62
- data/test/stripe/transfer_test.rb +0 -88
- data/test/stripe/usage_record_summary_test.rb +0 -19
- data/test/stripe/usage_record_test.rb +0 -28
- data/test/stripe/util_test.rb +0 -402
- data/test/stripe/webhook_endpoint_test.rb +0 -59
- data/test/stripe/webhook_test.rb +0 -96
- data/test/stripe_mock.rb +0 -77
- data/test/stripe_test.rb +0 -63
- data/test/test_data.rb +0 -61
- data/test/test_helper.rb +0 -71
@@ -1,107 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
TEST_RESOURCE_ID = "pi_123".freeze
|
7
|
-
|
8
|
-
class PaymentIntentTest < Test::Unit::TestCase
|
9
|
-
should "be listable" do
|
10
|
-
payment_intents = Stripe::PaymentIntent.list
|
11
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payment_intents"
|
12
|
-
assert payment_intents.data.is_a?(Array)
|
13
|
-
assert payment_intents.data[0].is_a?(Stripe::PaymentIntent)
|
14
|
-
end
|
15
|
-
|
16
|
-
should "be retrievable" do
|
17
|
-
payment_intent = Stripe::PaymentIntent.retrieve("pi_123")
|
18
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payment_intents/pi_123"
|
19
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
20
|
-
end
|
21
|
-
|
22
|
-
should "be creatable" do
|
23
|
-
payment_intent = Stripe::PaymentIntent.create(
|
24
|
-
amount: 1234,
|
25
|
-
currency: "usd",
|
26
|
-
payment_method_types: ["card"]
|
27
|
-
)
|
28
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents"
|
29
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
30
|
-
end
|
31
|
-
|
32
|
-
should "be saveable" do
|
33
|
-
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent", metadata: {})
|
34
|
-
payment_intent.metadata["key"] = "value"
|
35
|
-
payment_intent.save
|
36
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/#{payment_intent.id}"
|
37
|
-
end
|
38
|
-
|
39
|
-
should "be updateable" do
|
40
|
-
payment_intent = Stripe::PaymentIntent.update("pi_123", metadata: { foo: "bar" })
|
41
|
-
|
42
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123"
|
43
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
44
|
-
end
|
45
|
-
|
46
|
-
context "#cancel" do
|
47
|
-
should "cancel a payment_intent" do
|
48
|
-
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
49
|
-
payment_intent = payment_intent.cancel
|
50
|
-
|
51
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/cancel"
|
52
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
context ".cancel" do
|
57
|
-
should "cancel a payment_intent" do
|
58
|
-
payment_intent = Stripe::PaymentIntent.cancel("pi_123")
|
59
|
-
|
60
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/cancel"
|
61
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
context "#capture" do
|
66
|
-
should "capture a payment_intent" do
|
67
|
-
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
68
|
-
payment_intent = payment_intent.capture(
|
69
|
-
amount_to_capture: 1234
|
70
|
-
)
|
71
|
-
|
72
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/capture"
|
73
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
context ".capture" do
|
78
|
-
should "capture a payment_intent" do
|
79
|
-
payment_intent = Stripe::PaymentIntent.capture("pi_123", amount_to_capture: 1234)
|
80
|
-
|
81
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/capture"
|
82
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
context "#confirm" do
|
87
|
-
should "confirm a payment_intent" do
|
88
|
-
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
89
|
-
payment_intent = payment_intent.confirm(
|
90
|
-
payment_method: "pm_123"
|
91
|
-
)
|
92
|
-
|
93
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/confirm"
|
94
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
context ".confirm" do
|
99
|
-
should "confirm a payment_intent" do
|
100
|
-
payment_intent = Stripe::PaymentIntent.confirm("pi_123", payment_method: "pm_123")
|
101
|
-
|
102
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/confirm"
|
103
|
-
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
104
|
-
end
|
105
|
-
end
|
106
|
-
end
|
107
|
-
end
|
@@ -1,84 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class PaymentMethodTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
payment_methods = Stripe::PaymentMethod.list(
|
9
|
-
customer: "cus_123",
|
10
|
-
type: "card"
|
11
|
-
)
|
12
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payment_methods?customer=cus_123&type=card"
|
13
|
-
assert payment_methods.data.is_a?(Array)
|
14
|
-
assert payment_methods.first.is_a?(Stripe::PaymentMethod)
|
15
|
-
end
|
16
|
-
|
17
|
-
should "be retrievable" do
|
18
|
-
payment_method = Stripe::PaymentMethod.retrieve("pm_123")
|
19
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payment_methods/pm_123"
|
20
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
21
|
-
end
|
22
|
-
|
23
|
-
should "be creatable" do
|
24
|
-
payment_method = Stripe::PaymentMethod.create(
|
25
|
-
type: "card"
|
26
|
-
)
|
27
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods"
|
28
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
29
|
-
end
|
30
|
-
|
31
|
-
should "be saveable" do
|
32
|
-
payment_method = Stripe::PaymentMethod.retrieve("pm_123")
|
33
|
-
payment_method.metadata["key"] = "value"
|
34
|
-
payment_method.save
|
35
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/#{payment_method.id}"
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
payment_method = Stripe::PaymentMethod.update("pm_123", metadata: { key: "value" })
|
40
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123"
|
41
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
42
|
-
end
|
43
|
-
|
44
|
-
context "#attach" do
|
45
|
-
should "attach payment_method" do
|
46
|
-
payment_method = Stripe::PaymentMethod.construct_from(id: "pm_123", object: "payment_method")
|
47
|
-
payment_method = payment_method.attach(
|
48
|
-
customer: "cus_123"
|
49
|
-
)
|
50
|
-
|
51
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/attach"
|
52
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
context ".attach" do
|
57
|
-
should "attach payment_method" do
|
58
|
-
payment_method = Stripe::PaymentMethod.attach("pm_123", customer: "cus_123")
|
59
|
-
|
60
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/attach"
|
61
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
context "#detach" do
|
66
|
-
should "detach payment_method" do
|
67
|
-
payment_method = Stripe::PaymentMethod.construct_from(id: "pm_123", object: "payment_method")
|
68
|
-
payment_method = payment_method.detach
|
69
|
-
|
70
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/detach"
|
71
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
context ".detach" do
|
76
|
-
should "detach payment_method" do
|
77
|
-
payment_method = Stripe::PaymentMethod.detach("pm_123")
|
78
|
-
|
79
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/detach"
|
80
|
-
assert payment_method.is_a?(Stripe::PaymentMethod)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
data/test/stripe/payout_test.rb
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class PayoutTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
payouts = Stripe::Payout.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payouts"
|
10
|
-
assert payouts.data.is_a?(Array)
|
11
|
-
assert payouts.data[0].is_a?(Stripe::Payout)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
payout = Stripe::Payout.retrieve("tr_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/payouts/tr_123"
|
17
|
-
assert payout.is_a?(Stripe::Payout)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
payout = Stripe::Payout.create(
|
22
|
-
amount: 100,
|
23
|
-
currency: "USD"
|
24
|
-
)
|
25
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payouts"
|
26
|
-
assert payout.is_a?(Stripe::Payout)
|
27
|
-
end
|
28
|
-
|
29
|
-
should "be saveable" do
|
30
|
-
payout = Stripe::Payout.retrieve("tr_123")
|
31
|
-
payout.metadata["key"] = "value"
|
32
|
-
payout.save
|
33
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payouts/#{payout.id}"
|
34
|
-
end
|
35
|
-
|
36
|
-
should "be updateable" do
|
37
|
-
payout = Stripe::Payout.update("tr_123", metadata: { foo: "bar" })
|
38
|
-
assert_requested :post, "#{Stripe.api_base}/v1/payouts/tr_123"
|
39
|
-
assert payout.is_a?(Stripe::Payout)
|
40
|
-
end
|
41
|
-
|
42
|
-
context "#cancel" do
|
43
|
-
should "cancel a payout" do
|
44
|
-
payout = Stripe::Payout.retrieve("tr_123")
|
45
|
-
payout = payout.cancel
|
46
|
-
assert payout.is_a?(Stripe::Payout)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
context ".cancel" do
|
51
|
-
should "cancel a payout" do
|
52
|
-
payout = Stripe::Payout.cancel("pm_123")
|
53
|
-
assert payout.is_a?(Stripe::Payout)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
data/test/stripe/person_test.rb
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class PersonTest < Test::Unit::TestCase
|
7
|
-
context "#resource_url" do
|
8
|
-
should "return a resource URL" do
|
9
|
-
person = Stripe::Person.construct_from(
|
10
|
-
id: "person_123",
|
11
|
-
account: "acct_123"
|
12
|
-
)
|
13
|
-
assert_equal "/v1/accounts/acct_123/persons/person_123",
|
14
|
-
person.resource_url
|
15
|
-
end
|
16
|
-
|
17
|
-
should "raise without an account" do
|
18
|
-
person = Stripe::Person.construct_from(id: "person_123")
|
19
|
-
assert_raises NotImplementedError do
|
20
|
-
person.resource_url
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
should "raise on #retrieve" do
|
26
|
-
assert_raises NotImplementedError do
|
27
|
-
Stripe::Person.retrieve("person_123")
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
should "raise on #update" do
|
32
|
-
assert_raises NotImplementedError do
|
33
|
-
Stripe::Person.update("person_123", {})
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be saveable" do
|
38
|
-
account = Stripe::Account.retrieve("acct_123")
|
39
|
-
person = account.persons.retrieve("person_123")
|
40
|
-
person.first_name = "John"
|
41
|
-
person.save
|
42
|
-
assert_requested :post,
|
43
|
-
"#{Stripe.api_base}/v1/accounts/#{person.account}/persons/#{person.id}"
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
data/test/stripe/plan_test.rb
DELETED
@@ -1,98 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class PlanTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
plans = Stripe::Plan.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/plans"
|
10
|
-
assert plans.data.is_a?(Array)
|
11
|
-
assert plans.data[0].is_a?(Stripe::Plan)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
plan = Stripe::Plan.retrieve("pl_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/plans/pl_123"
|
17
|
-
assert plan.is_a?(Stripe::Plan)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
plan = Stripe::Plan.create(
|
22
|
-
amount: 5000,
|
23
|
-
interval: "month",
|
24
|
-
nickname: "Sapphire elite",
|
25
|
-
currency: "usd"
|
26
|
-
)
|
27
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
28
|
-
assert plan.is_a?(Stripe::Plan)
|
29
|
-
end
|
30
|
-
|
31
|
-
should "be creatable with metered configuration" do
|
32
|
-
plan = Stripe::Plan.create(
|
33
|
-
amount: 5000,
|
34
|
-
interval: "month",
|
35
|
-
nickname: "Sapphire elite",
|
36
|
-
currency: "usd",
|
37
|
-
usage_type: "metered"
|
38
|
-
)
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
40
|
-
assert plan.is_a?(Stripe::Plan)
|
41
|
-
end
|
42
|
-
|
43
|
-
should "be creatable with tiered configuration" do
|
44
|
-
plan = Stripe::Plan.create(
|
45
|
-
interval: "month",
|
46
|
-
nickname: "Sapphire elite",
|
47
|
-
currency: "usd",
|
48
|
-
billing_scheme: "tiered",
|
49
|
-
tiers_mode: "volume",
|
50
|
-
tiers: [{ up_to: 100, amount: 1000 }, { up_to: "inf", amount: 2000 }]
|
51
|
-
)
|
52
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
53
|
-
assert plan.is_a?(Stripe::Plan)
|
54
|
-
end
|
55
|
-
|
56
|
-
should "be creatable with transform_usage" do
|
57
|
-
plan = Stripe::Plan.create(
|
58
|
-
interval: "month",
|
59
|
-
nickname: "Sapphire elite",
|
60
|
-
currency: "usd",
|
61
|
-
amount: 5000,
|
62
|
-
transform_usage: { round: "up", divide_by: 50 }
|
63
|
-
)
|
64
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
65
|
-
assert plan.is_a?(Stripe::Plan)
|
66
|
-
end
|
67
|
-
|
68
|
-
should "be saveable" do
|
69
|
-
plan = Stripe::Plan.retrieve("pl_123")
|
70
|
-
plan.metadata["key"] = "value"
|
71
|
-
plan.save
|
72
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans/#{plan.id}"
|
73
|
-
end
|
74
|
-
|
75
|
-
should "be updateable" do
|
76
|
-
plan = Stripe::Plan.update("pl_123", metadata: { foo: "bar" })
|
77
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans/pl_123"
|
78
|
-
assert plan.is_a?(Stripe::Plan)
|
79
|
-
end
|
80
|
-
|
81
|
-
context "#delete" do
|
82
|
-
should "be deletable" do
|
83
|
-
plan = Stripe::Plan.retrieve("pl_123")
|
84
|
-
plan = plan.delete
|
85
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/plans/#{plan.id}"
|
86
|
-
assert plan.is_a?(Stripe::Plan)
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
context ".delete" do
|
91
|
-
should "be deletable" do
|
92
|
-
plan = Stripe::Plan.delete("pl_123")
|
93
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/plans/pl_123"
|
94
|
-
assert plan.is_a?(Stripe::Plan)
|
95
|
-
end
|
96
|
-
end
|
97
|
-
end
|
98
|
-
end
|
data/test/stripe/product_test.rb
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class ProductTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
products = Stripe::Product.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/products"
|
10
|
-
assert products.data.is_a?(Array)
|
11
|
-
assert products.data[0].is_a?(Stripe::Product)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
product = Stripe::Product.retrieve("prod_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/products/prod_123"
|
17
|
-
assert product.is_a?(Stripe::Product)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
product = Stripe::Product.create(
|
22
|
-
name: "My Product",
|
23
|
-
type: "good"
|
24
|
-
)
|
25
|
-
assert_requested :post, "#{Stripe.api_base}/v1/products"
|
26
|
-
assert product.is_a?(Stripe::Product)
|
27
|
-
end
|
28
|
-
|
29
|
-
should "be saveable" do
|
30
|
-
product = Stripe::Product.retrieve("prod_123")
|
31
|
-
product.metadata["key"] = "value"
|
32
|
-
product.save
|
33
|
-
assert_requested :post, "#{Stripe.api_base}/v1/products/#{product.id}"
|
34
|
-
end
|
35
|
-
|
36
|
-
should "be updateable" do
|
37
|
-
product = Stripe::Product.update("prod_123", metadata: { foo: "bar" })
|
38
|
-
assert_requested :post, "#{Stripe.api_base}/v1/products/prod_123"
|
39
|
-
assert product.is_a?(Stripe::Product)
|
40
|
-
end
|
41
|
-
|
42
|
-
context "#delete" do
|
43
|
-
should "be deletable" do
|
44
|
-
product = Stripe::Product.retrieve("prod_123")
|
45
|
-
product = product.delete
|
46
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/products/#{product.id}"
|
47
|
-
assert product.is_a?(Stripe::Product)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context ".delete" do
|
52
|
-
should "be deletable" do
|
53
|
-
product = Stripe::Product.delete("prod_123")
|
54
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/products/prod_123"
|
55
|
-
assert product.is_a?(Stripe::Product)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Radar
|
7
|
-
class EarlyFraudWarningTest < Test::Unit::TestCase
|
8
|
-
should "be listable" do
|
9
|
-
warnings = Stripe::Radar::EarlyFraudWarning.list
|
10
|
-
assert_requested :get, "#{Stripe.api_base}/v1/radar/early_fraud_warnings"
|
11
|
-
assert warnings.data.is_a?(Array)
|
12
|
-
assert warnings.data[0].is_a?(Stripe::Radar::EarlyFraudWarning)
|
13
|
-
end
|
14
|
-
|
15
|
-
should "be retrievable" do
|
16
|
-
warning = Stripe::Radar::EarlyFraudWarning.retrieve("issfr_123")
|
17
|
-
assert_requested :get, "#{Stripe.api_base}/v1/radar/early_fraud_warnings/issfr_123"
|
18
|
-
assert warning.is_a?(Stripe::Radar::EarlyFraudWarning)
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
@@ -1,48 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Radar
|
7
|
-
class ValueListItemTest < Test::Unit::TestCase
|
8
|
-
should "be listable" do
|
9
|
-
items = Stripe::Radar::ValueListItem.list(value_list: "rsl_123")
|
10
|
-
assert_requested :get, "#{Stripe.api_base}/v1/radar/value_list_items?value_list=rsl_123"
|
11
|
-
assert items.data.is_a?(Array)
|
12
|
-
assert items.first.is_a?(Stripe::Radar::ValueListItem)
|
13
|
-
end
|
14
|
-
|
15
|
-
should "be retrievable" do
|
16
|
-
item = Stripe::Radar::ValueListItem.retrieve("rsli_123")
|
17
|
-
assert_requested :get, "#{Stripe.api_base}/v1/radar/value_list_items/rsli_123"
|
18
|
-
assert item.is_a?(Stripe::Radar::ValueListItem)
|
19
|
-
end
|
20
|
-
|
21
|
-
should "be creatable" do
|
22
|
-
item = Stripe::Radar::ValueListItem.create(
|
23
|
-
value_list: "rsl_123",
|
24
|
-
value: "value"
|
25
|
-
)
|
26
|
-
assert_requested :post, "#{Stripe.api_base}/v1/radar/value_list_items"
|
27
|
-
assert item.is_a?(Stripe::Radar::ValueListItem)
|
28
|
-
end
|
29
|
-
|
30
|
-
context "#delete" do
|
31
|
-
should "be deletable" do
|
32
|
-
list = Stripe::Radar::ValueListItem.retrieve("rsli_123")
|
33
|
-
list = list.delete
|
34
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/radar/value_list_items/rsli_123"
|
35
|
-
assert list.is_a?(Stripe::Radar::ValueListItem)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
context ".delete" do
|
40
|
-
should "be deletable" do
|
41
|
-
list = Stripe::Radar::ValueListItem.delete("rsli_123")
|
42
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/radar/value_list_items/rsli_123"
|
43
|
-
assert list.is_a?(Stripe::Radar::ValueListItem)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
@@ -1,61 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Radar
|
7
|
-
class ValueListTest < Test::Unit::TestCase
|
8
|
-
should "be listable" do
|
9
|
-
lists = Stripe::Radar::ValueList.list
|
10
|
-
assert_requested :get, "#{Stripe.api_base}/v1/radar/value_lists"
|
11
|
-
assert lists.data.is_a?(Array)
|
12
|
-
assert lists.first.is_a?(Stripe::Radar::ValueList)
|
13
|
-
end
|
14
|
-
|
15
|
-
should "be retrievable" do
|
16
|
-
list = Stripe::Radar::ValueList.retrieve("rsl_123")
|
17
|
-
assert_requested :get, "#{Stripe.api_base}/v1/radar/value_lists/rsl_123"
|
18
|
-
assert list.is_a?(Stripe::Radar::ValueList)
|
19
|
-
end
|
20
|
-
|
21
|
-
should "be creatable" do
|
22
|
-
list = Stripe::Radar::ValueList.create(
|
23
|
-
alias: "list_alias",
|
24
|
-
name: "list_name"
|
25
|
-
)
|
26
|
-
assert_requested :post, "#{Stripe.api_base}/v1/radar/value_lists"
|
27
|
-
assert list.is_a?(Stripe::Radar::ValueList)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
list = Stripe::Radar::ValueList.retrieve("rsl_123")
|
32
|
-
list.metadata["key"] = "value"
|
33
|
-
list.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/radar/value_lists/rsl_123"
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be updateable" do
|
38
|
-
list = Stripe::Radar::ValueList.update("rsl_123", metadata: { key: "value" })
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/radar/value_lists/rsl_123"
|
40
|
-
assert list.is_a?(Stripe::Radar::ValueList)
|
41
|
-
end
|
42
|
-
|
43
|
-
context "#delete" do
|
44
|
-
should "be deletable" do
|
45
|
-
list = Stripe::Radar::ValueList.retrieve("rsl_123")
|
46
|
-
list = list.delete
|
47
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/radar/value_lists/rsl_123"
|
48
|
-
assert list.is_a?(Stripe::Radar::ValueList)
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
context ".delete" do
|
53
|
-
should "be deletable" do
|
54
|
-
list = Stripe::Radar::ValueList.delete("rsl_123")
|
55
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/radar/value_lists/rsl_123"
|
56
|
-
assert list.is_a?(Stripe::Radar::ValueList)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class RecipientTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
recipients = Stripe::Recipient.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/recipients"
|
10
|
-
assert recipients.data.is_a?(Array)
|
11
|
-
assert recipients.data[0].is_a?(Stripe::Recipient)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
recipient = Stripe::Recipient.retrieve("rp_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/recipients/rp_123"
|
17
|
-
assert recipient.is_a?(Stripe::Recipient)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
recipient = Stripe::Recipient.create(
|
22
|
-
name: "Noah Jackson",
|
23
|
-
type: "individual"
|
24
|
-
)
|
25
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients"
|
26
|
-
assert recipient.is_a?(Stripe::Recipient)
|
27
|
-
end
|
28
|
-
|
29
|
-
should "be saveable" do
|
30
|
-
recipient = Stripe::Recipient.retrieve("rp_123")
|
31
|
-
recipient.metadata["key"] = "value"
|
32
|
-
recipient.save
|
33
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients/#{recipient.id}"
|
34
|
-
end
|
35
|
-
|
36
|
-
should "be updateable" do
|
37
|
-
recipient = Stripe::Recipient.update("rp_123", metadata: { foo: "bar" })
|
38
|
-
assert_requested :post, "#{Stripe.api_base}/v1/recipients/rp_123"
|
39
|
-
assert recipient.is_a?(Stripe::Recipient)
|
40
|
-
end
|
41
|
-
|
42
|
-
should "be deletable" do
|
43
|
-
end
|
44
|
-
|
45
|
-
context "#delete" do
|
46
|
-
should "be deletable" do
|
47
|
-
recipient = Stripe::Recipient.retrieve("rp_123")
|
48
|
-
recipient = recipient.delete
|
49
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/recipients/#{recipient.id}"
|
50
|
-
assert recipient.is_a?(Stripe::Recipient)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
context ".delete" do
|
55
|
-
should "be deletable" do
|
56
|
-
recipient = Stripe::Recipient.delete("rp_123")
|
57
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/recipients/rp_123"
|
58
|
-
assert recipient.is_a?(Stripe::Recipient)
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
data/test/stripe/refund_test.rb
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class RefundTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
refunds = Stripe::Refund.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/refunds"
|
10
|
-
assert refunds.data.is_a?(Array)
|
11
|
-
assert refunds.first.is_a?(Stripe::Refund)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
refund = Stripe::Refund.retrieve("re_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/refunds/re_123"
|
17
|
-
assert refund.is_a?(Stripe::Refund)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
refund = Stripe::Refund.create(charge: "ch_123")
|
22
|
-
assert_requested :post, "#{Stripe.api_base}/v1/refunds"
|
23
|
-
assert refund.is_a?(Stripe::Refund)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "be saveable" do
|
27
|
-
refund = Stripe::Refund.retrieve("re_123")
|
28
|
-
refund.metadata["key"] = "value"
|
29
|
-
refund.save
|
30
|
-
assert_requested :post, "#{Stripe.api_base}/v1/refunds/#{refund.id}"
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be updateable" do
|
34
|
-
refund = Stripe::Refund.update("re_123", metadata: { key: "value" })
|
35
|
-
assert_requested :post, "#{Stripe.api_base}/v1/refunds/re_123"
|
36
|
-
assert refund.is_a?(Stripe::Refund)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|