blob: adac00a781d5ba09615c957729623d542f13d4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
module CustomerTestHelper
def stub_customer(user = nil)
user ||= find_record :user
customer = stub_record :customer_with_payment_info,
user: user,
user_id: user.id
Customer.stubs(:find_by_user_id).with(user.id).returns(customer)
return customer
end
end
|