diff options
author | Azul <azul@leap.se> | 2013-07-01 13:13:02 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:14 +0200 |
commit | 1c40963194aa6f1dc985b949fb3c05e70f7530c0 (patch) | |
tree | d03cb2b420f0b8d5dfec2f0b2c875d157782c275 /billing/test/factories.rb | |
parent | a49c63eb117abf47ca1804493c25ae34804f8ee1 (diff) |
use fake_braintree, fix and test customer with braintree info
Diffstat (limited to 'billing/test/factories.rb')
-rw-r--r-- | billing/test/factories.rb | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/billing/test/factories.rb b/billing/test/factories.rb index 8648847..8314542 100644 --- a/billing/test/factories.rb +++ b/billing/test/factories.rb @@ -1,11 +1,21 @@ FactoryGirl.define do + TEST_CC_NUMBER = %w(4111 1111 1111 1111).join + factory :customer do user - factory :braintree_customer do - braintree_customer_id { 1 } + factory :customer_with_payment_info do + braintree_customer end end + factory :braintree_customer, class: Braintree::Customer do + first_name 'Big' + last_name 'Spender' + credit_card number: TEST_CC_NUMBER, expiration_date: '04/2016' + initialize_with { Braintree::Customer.create(attributes).customer } + skip_create + end + end |