次のコードを持つ ArticleController があります。
def edit
@article = current_user.articles.find(params[:id])
end
そして、次のテスト:
describe "GET 'edit'" do
it "should fail when signed in and editing another user article" do
sign_in @user
get :edit, :id => @another_user_article.id
response.should_not be_success
end
end
ただし、テストを開始すると、次のエラーが表示されます (これは正常です) が、テストに合格するにはどうすればよいでしょうか?
Failure/Error: get :edit, :id => @another_user_article.id
Mongoid::Errors::DocumentNotFound:
Document not found for class Article with id(s) 4f9e71be4adfdcc02300001d.
これでコントローラーメソッドを変更することを考えましたが、それは私には正しくないようです:
def edit
@article = Article.first(conditions: { _id: params[:id], user_id: current_user.id })
end