Sha256: 8767ac7d43f7c6b88ff8d6503e3c27947e1bef9871e5493d17620b07da640f0a

Contents?: true

Size: 1.02 KB

Versions: 20

Compression:

Stored size: 1.02 KB

Contents

require File.expand_path("../../test_helper", __FILE__)

module Stripe
  class ApplicationFeeRefundTest < Test::Unit::TestCase
    setup do
      @fee = Stripe::ApplicationFee.retrieve("fee_123")
    end

    should "be listable" do
      refunds = @fee.refunds

      # notably this *doesn't* make an API call
      assert_not_requested :get,
                           "#{Stripe.api_base}/v1/application_fees/#{@fee.id}/refunds"

      assert refunds.data.is_a?(Array)
      assert refunds.first.is_a?(Stripe::ApplicationFeeRefund)
    end

    should "be creatable" do
      refund = @fee.refunds.create
      assert_requested :post,
                       "#{Stripe.api_base}/v1/application_fees/#{@fee.id}/refunds"
      assert refund.is_a?(Stripe::ApplicationFeeRefund)
    end

    should "be saveable" do
      refund = @fee.refunds.first
      refund.metadata["key"] = "value"
      refund.save
      assert_requested :post,
                       "#{Stripe.api_base}/v1/application_fees/#{@fee.id}/refunds/#{refund.id}"
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
stripe-3.14.0 test/stripe/application_fee_refund_test.rb
stripe-3.13.1 test/stripe/application_fee_refund_test.rb
stripe-3.13.0 test/stripe/application_fee_refund_test.rb
stripe-3.12.1 test/stripe/application_fee_refund_test.rb
stripe-3.12.0 test/stripe/application_fee_refund_test.rb
stripe-3.11.0 test/stripe/application_fee_refund_test.rb
stripe-3.10.0 test/stripe/application_fee_refund_test.rb
stripe-3.9.2 test/stripe/application_fee_refund_test.rb
stripe-3.9.1 test/stripe/application_fee_refund_test.rb
stripe-3.9.0 test/stripe/application_fee_refund_test.rb
stripe-3.8.2 test/stripe/application_fee_refund_test.rb
stripe-3.8.1 test/stripe/application_fee_refund_test.rb
stripe-3.8.0 test/stripe/application_fee_refund_test.rb
stripe-3.7.0 test/stripe/application_fee_refund_test.rb
stripe-3.6.0 test/stripe/application_fee_refund_test.rb
stripe-3.5.3 test/stripe/application_fee_refund_test.rb
stripe-3.5.2 test/stripe/application_fee_refund_test.rb
stripe-3.5.1 test/stripe/application_fee_refund_test.rb
stripe-3.5.0 test/stripe/application_fee_refund_test.rb
stripe-3.4.1 test/stripe/application_fee_refund_test.rb