Sha256: 2665337f247ca463d898bae6be1e4aa0317076ceb735473fff0102275287d89d

Contents?: true

Size: 1.93 KB

Versions: 30

Compression:

Stored size: 1.93 KB

Contents

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

module Stripe
  class RecipientCardTest < Test::Unit::TestCase
    RECIPIENT_CARD_URL = '/v1/recipients/test_recipient/cards/test_card'

    def recipient
      @mock.expects(:get).once.returns(make_response(make_recipient))
      Stripe::Recipient.retrieve('test_recipient')
    end

    should "recipient cards should be listable" do
      c = recipient
      @mock.expects(:get).once.returns(make_response(make_recipient_card_array(recipient.id)))
      cards = c.cards.list.data
      assert cards.kind_of? Array
      assert cards[0].kind_of? Stripe::Card
    end

    should "recipient cards should have the correct resource url" do
      c = recipient
      @mock.expects(:get).once.returns(make_response(make_card(
        :id => 'test_card',
        :recipient => 'test_recipient'
      )))
      card = c.cards.retrieve('card')
      assert_equal RECIPIENT_CARD_URL, card.resource_url
    end

    should "recipient cards should be deletable" do
      c = recipient
      @mock.expects(:get).once.returns(make_response(make_card))
      @mock.expects(:delete).once.returns(make_response(make_card(:deleted => true)))
      card = c.cards.retrieve('card')
      card.delete
      assert card.deleted
    end

    should "recipient cards should be updateable" do
      c = recipient
      @mock.expects(:get).once.returns(make_response(make_card(:exp_year => "2000")))
      @mock.expects(:post).once.returns(make_response(make_card(:exp_year => "2100")))
      card = c.cards.retrieve('card')
      assert_equal "2000", card.exp_year
      card.exp_year = "2100"
      card.save
      assert_equal "2100", card.exp_year
    end

    should "create should return a new recipient card" do
      c = recipient
      @mock.expects(:post).once.returns(make_response(make_card(:id => "test_card")))
      card = c.cards.create(:card => "tok_41YJ05ijAaWaFS")
      assert_equal "test_card", card.id
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
stripe-1.58.0 test/stripe/recipient_card_test.rb
stripe-1.57.1 test/stripe/recipient_card_test.rb
stripe-1.57.0 test/stripe/recipient_card_test.rb
stripe-1.56.2 test/stripe/recipient_card_test.rb
stripe-1.56.1 test/stripe/recipient_card_test.rb
stripe-1.56.0 test/stripe/recipient_card_test.rb
stripe-1.55.1 test/stripe/recipient_card_test.rb
stripe-1.55.0 test/stripe/recipient_card_test.rb
stripe-1.54.0 test/stripe/recipient_card_test.rb
stripe-1.53.0 test/stripe/recipient_card_test.rb
stripe-1.52.0 test/stripe/recipient_card_test.rb
stripe-1.51.1 test/stripe/recipient_card_test.rb
stripe-1.51.0 test/stripe/recipient_card_test.rb
stripe-1.50.1 test/stripe/recipient_card_test.rb
stripe-1.50.0 test/stripe/recipient_card_test.rb
stripe-1.49.0 test/stripe/recipient_card_test.rb
stripe-1.48.0 test/stripe/recipient_card_test.rb
stripe-1.47.0 test/stripe/recipient_card_test.rb
stripe-1.46.0 test/stripe/recipient_card_test.rb
stripe-1.45.0 test/stripe/recipient_card_test.rb