Sha256: cbb9d0be2307312c670031b7f66a7b694d36d29a5873d089a5b7472968e7037d
Contents?: true
Size: 586 Bytes
Versions: 2
Compression:
Stored size: 586 Bytes
Contents
module MerchantAccountHelpers def create_merchant_account Braintree::MerchantAccount.create( tos_accepted: true, individual: { first_name: 'first', last_name: 'last', email: 'test@test.com', date_of_birth: '1971-01-01', address: { street_address: '1 E Main St', locality: 'Chicago', region: 'Illinois', postal_code: '60622', } }, funding: { destination: 'bank', account_number: '9900000000', routing_number: '021000021' } ) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fake_braintree-0.8.0 | spec/support/merchant_account_helpers.rb |
fake_braintree-0.7.0 | spec/support/merchant_account_helpers.rb |