在学习《Rails Tutorials》9.2.2 节时,有一个测试一直没通过。错误如下图:
此测试是用户只能编辑自己的资料,如果试图编辑其他人的资料,则跳转到 root_path 对应的页面。不过不知为啥一直跳转到 signin 了。
测试代码如下:
describe "as wrong user" do
let(:user) { FactoryGirl.create(:user) }
let(:wrong_user) { FactoryGirl.create(:user, email: "[email protected]") }
describe "visiting Users#edit page" do
before { visit edit_user_path(wrong_user) }
it { should_not have_title(full_title("Edit user")) }
end
describe "submitting a PATCH request to the User#update action" do
before { patch user_path(wrong_user) }
specify { expect(response).to redirect_to(root_path) }
end
end