From 214ef762a970989e09be1960c5551c0a4d3f4421 Mon Sep 17 00:00:00 2001 From: Azul Date: Sat, 31 Aug 2013 15:15:53 +0200 Subject: do not leave behind users in billing unit and functional tests --- billing/test/unit/customer_test.rb | 4 +++- billing/test/unit/customer_with_payment_info_test.rb | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'billing/test/unit') diff --git a/billing/test/unit/customer_test.rb b/billing/test/unit/customer_test.rb index 2ea0b5e..6156f87 100644 --- a/billing/test/unit/customer_test.rb +++ b/billing/test/unit/customer_test.rb @@ -1,9 +1,11 @@ require 'test_helper' class CustomerTest < ActiveSupport::TestCase + include StubRecordHelper setup do - @customer = FactoryGirl.build(:customer) + @user = find_record :user + @customer = FactoryGirl.build(:customer, user: @user) end test "test set of attributes should be valid" do diff --git a/billing/test/unit/customer_with_payment_info_test.rb b/billing/test/unit/customer_with_payment_info_test.rb index ca89e65..0589a59 100644 --- a/billing/test/unit/customer_with_payment_info_test.rb +++ b/billing/test/unit/customer_with_payment_info_test.rb @@ -2,9 +2,11 @@ require 'test_helper' require 'fake_braintree' class CustomerWithPaymentInfoTest < ActiveSupport::TestCase + include StubRecordHelper setup do - @customer = FactoryGirl.build(:customer_with_payment_info) + @user = find_record :user + @customer = FactoryGirl.build(:customer_with_payment_info, user: @user) end test "has payment_info" do @@ -28,6 +30,7 @@ class CustomerWithPaymentInfoTest < ActiveSupport::TestCase assert_equal 'Spender', @customer.last_name assert_equal 1, @customer.credit_cards.size assert_equal Hash.new, @customer.custom_fields + @customer.destroy end test "sets default_credit_card" do -- cgit v1.2.3