Я новичок как в rspec, так и в унаследованных ресурсах. У меня есть простой ресурс, Контакт, который имеет поле имени. Контроллер не имеет специальных функций.
class ContactsController < InheritedResources::Base
actions :all, :except => [:show]
end
Я написал спецификации для создания и индексации просто отлично, используя mock_model. Однако при использовании mock_model при обновлении он не мог найти контакт при установке. Итак, я перешел на использование реальных моделей:
describe "PUT update" do
let(:contact) { Contact.create(:name => "test 1") }
it "edits the contact" do
contact.name = "#{contact.name}-edited"
end
context "when the contact updates successfully" do
before do
contact.stub(:save).and_return(true)
end
it "redirects to the Contacts index" do
put :update, :id => contact.id, :contact => contact
#assigns[:contact].name = "test 1 - edited"
response.should redirect_to(:action => "index")
end
end
context "when the contact fails to save" do
before do
contact.stub(:save).and_return(false)
contact.stub(:update_attributes).and_return(false)
contact.stub(:errors).and_return(:errors => { :anything => "anything" })
end
it "renders the edit template" do
put :update, :id => contact.id, :contact => contact
response.should render_template :edit
end
end
end
Я получаю следующую ошибку:
Failures:
1) ContactsController PUT update when the contact fails to save renders the edit template
Failure/Error: response.should render_template :edit
Expected block to return true value.
# ./spec/controllers/contacts_controller_spec.rb:82:in `block (4 levels) in <top (required)>'
Когда я проверяю код_состояния, это редирект 302 в /contacts/:id.
Что я делаю не так?