Sha256: 105b290275ff0fcd0c6d99ba5402f8b18322f3522fc8cf46d47d106aa9451950

Contents?: true

Size: 662 Bytes

Versions: 40

Compression:

Stored size: 662 Bytes

Contents

require 'spec_helper.rb'

describe Paypal::Payment::Response::ShipTo do
  let :keys do
    Paypal::Payment::Response::ShipTo.optional_attributes
  end

  describe '.new' do
    it 'should allow nil for attributes' do
      payer = Paypal::Payment::Response::ShipTo.new
      keys.each do |key|
        payer.send(key).should be_nil
      end
    end

    it 'should treat all attributes as String' do
      attributes = keys.inject({}) do |attributes, key|
        attributes.merge!(key => "xyz")
      end
      payer = Paypal::Payment::Response::ShipTo.new attributes
      keys.each do |key|
        payer.send(key).should == "xyz"
      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
paypal-express-0.6.0 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.5 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.4 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.3 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.2 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.1 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.0 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.7 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.5.0.alpha spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.6 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.5 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.4 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.3 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.2 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.1 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.0 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.4.0.alpha spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.3.1 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.3.0 spec/paypal/payment/response/ship_to_spec.rb
paypal-express-0.2.10 spec/paypal/payment/response/ship_to_spec.rb