This is in my controller
@business = @current_user.businesses.new(params[:business])
@businesses is an array of business objects and I'm unsure of how to mock this cascade of calls.
|
|
This is in my controller
|
|||
|
|
|
|
Here is one way to do it. The 'businesses' part of it is an association proxy. So usually mock it like this:
or more explicit
|
||
|
|