diff options
Diffstat (limited to 'billing/test/factories.rb')
-rw-r--r-- | billing/test/factories.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/billing/test/factories.rb b/billing/test/factories.rb new file mode 100644 index 0000000..8648847 --- /dev/null +++ b/billing/test/factories.rb @@ -0,0 +1,11 @@ +FactoryGirl.define do + + factory :customer do + user + + factory :braintree_customer do + braintree_customer_id { 1 } + end + end + +end |