作者有很多作品。作品属于作者。
resources :authors do
resources :works
end
和 RSpec:
it "should redirect to :show" do
work = FactoryGirl.create(:work)
controller.stub(:resource) { work }
work.should_receive(:update_attributes) { true }
put :update, id: work.id, author_id: work.author.id, work: {}
response.should redirect_to(admin_author_work_path(work.author, work))
end
和错误:
Expected response to be a redirect to <http://test.host/admin/authors/353/works/166>
but was a redirect to <http://test.host/admin/authors/353/works>
为什么它不重定向到works_controller 的 :show 动作?我错过了什么吗?
我正在使用继承的资源,因此使用的是 controller.stub(:resource)。
我也注意到了assign(:work, work) throws undefined method 'assign'
?它适用于视图,它不应该也适用于控制器吗?