User.should_receive(:update_attributes).with({'these' => 'params'})
Что означает это утверждение? these
нигде не обозначено как означающее.
Все утверждение таково:
describe "with valid params" do
it "updates the requested user" do
User.should_receive(:find).with("37") { mock_user }
User.should_receive(:update_attributes).with({'these' => 'params'})
put :update, :id => "37", :user => {'these' => 'params'}
end
Я говорю это, потому что получаю ошибку:
unknown attribute: these
Что исходит из вышеупомянутого сценария ..