私は次のコードでArticleControllerは持っている:私はテストを開始するときしかし、私は(正常です)、次のエラーを取得Mongoid :: Errors :: DocumentNotFoundをRspecで処理する方法は?
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
、しかし:
def edit
@article = current_user.articles.find(params[:id])
end
そして、次のテストをそれで私のテストに合格することができますか?
Failure/Error: get :edit, :id => @another_user_article.id
Mongoid::Errors::DocumentNotFound:
Document not found for class Article with id(s) 4f9e71be4adfdcc02300001d.
は、私はこの1つで私のコントローラメソッドの変更について考えたが、それは私には右のようではありません:
def edit
@article = Article.first(conditions: { _id: params[:id], user_id: current_user.id })
end
'{{}} .to raise_error'部分はまさに私が欠けていたものです。どうもありがとうございました! –
私は 'expect(something) 'を使って見つかるまで、私はこれに対して頭を壊していたと付け加えるべきです。それはprocの内部になければなりません。 –