Displaying 1 result from an estimated 1 matches for "item_1002".
Did you mean:
item_001
2007 Sep 18
2
rSpec / Nested Routes / Mocks
...t seem to tell rSpec to expect the call @item.user. The
following error message plagues me not matter how I try to fuss with
the mock:
Spec::Mocks::MockExpectationError in ''ItemsController handling POST /
items should redirect to the new course on successful save''
Mock ''Item_1002'' received unexpected message :user= with (#<User:
0x..fdb7bcd38 @name="User_1003">)
Any help would be greatly appreciated.
Here''s my setup. Problem line indicated with ******
--routes.rb--
map.resources :users do |users|
users.resources :items
end
--items...