Sha256: 02922e77e8698e258a334200aa75ed93b89c77b20861ab014135d4fb10d5d379

Contents?: true

Size: 900 Bytes

Versions: 9

Compression:

Stored size: 900 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")

describe Braintree::PaymentMethod do
  describe "find" do
    it "handles an unknown payment method type" do
      unknown_response = {:unknown_payment_method => {:token => 1234, :default => true}}
      http_instance = mock(:get => unknown_response)
      Braintree::Http.stub(:new).and_return(http_instance)
      unknown_payment_method = Braintree::PaymentMethod.find("UNKNOWN_PAYMENT_METHOD_TOKEN")

      unknown_payment_method.token.should == 1234
      unknown_payment_method.default?.should be_true
    end
  end

  describe "timestamps" do
    it "exposes created_at and updated_at" do
      now = Time.now
      paypal_account = Braintree::PayPalAccount._new(:gateway, :updated_at => now, :created_at => now)

      paypal_account.created_at.should == now
      paypal_account.updated_at.should == now
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
braintree-2.38.0 spec/unit/braintree/payment_method_spec.rb
braintree-2.37.0 spec/unit/braintree/payment_method_spec.rb
braintree-2.36.0 spec/unit/braintree/payment_method_spec.rb
braintree-2.35.0 spec/unit/braintree/payment_method_spec.rb
braintree-2.34.1 spec/unit/braintree/payment_method_spec.rb
braintree-2.34.0 spec/unit/braintree/payment_method_spec.rb
braintree-2.33.1 spec/unit/braintree/payment_method_spec.rb
braintree-2.33.0 spec/unit/braintree/payment_method_spec.rb
braintree-2.32.1 spec/unit/braintree/payment_method_spec.rb