spec/factories.rb in cameroncox-mousetrap-0.6.1 vs spec/factories.rb in cameroncox-mousetrap-0.6.2
- old
+ new
@@ -17,10 +17,11 @@
f.billing_first_name { random_string }
f.billing_last_name { random_string }
f.credit_card_number '4111111111111111'
f.credit_card_expiration_month '12'
f.credit_card_expiration_year '2012'
+ f.credit_card_code '123'
f.billing_address "400 W 7th St\n#200"
f.billing_city 'Bloomington'
f.billing_state 'IN'
f.billing_country 'US'
f.billing_zip_code '47404'
@@ -28,7 +29,8 @@
Factory.define :alternate_subscription, :parent => :subscription, :default_strategy => :stub do |f|
f.credit_card_number '5555555555554444'
f.credit_card_expiration_month '7'
f.credit_card_expiration_year '2013'
+ f.credit_card_code '456'
f.billing_zip_code '12345'
end