summaryrefslogtreecommitdiff
path: root/billing/test/support/customer_test_helper.rb
blob: ad72edd6b0538b0251bd25f1f48212ba4a434337 (plain)
1
2
3
4
5
6
7
8
9
module CustomerTestHelper

  def stub_customer(user = nil)
    user ||= find_record :user
    customer = stub_record :customer_with_payment_info, user: user
    Customer.stubs(:find_by_user_id).with(user.id).returns(customer)
    return customer
  end
end