コントローラー仕様で ajax リクエストをテストしたいだけです。プロダクトコードは以下です。認証にはDeviseを使用しています。
class NotesController < ApplicationController
def create
if request.xhr?
@note = Note.new(params[:note])
if @note.save
render json: { notice: "success" }
end
end
end
end
そしてスペックは以下。
describe NotesController do
before do
user = FactoryGirl.create(:user)
user.confirm!
sign_in user
end
it "has a 200 status code" do
xhr :post, :create, note: { title: "foo", body: "bar" }, format: :json
response.code.should == "200"
end
end
レスポンス コードは 200 になるはずですが、401 が返されます。おそらく、rspec がスローするリクエストに Authenticity_token などがないためだと思います。どうすればそれをスタブできますか?
どんな助けでも大歓迎です。