create メソッドのインスタンス変数が構築されたデータを保持するかどうかを確認する rspec テストを作成しています。ただし、このエラーが返されるため、テストは機能しません...
Failure/Error: assigns[:micropost]should eq(@post)
expected: #<Micropost id: 1, content: "Hello there", user_id: 1>
got: #<Micropost id: 2, content: "Hello there", user_id: 1>
私のrspecテストは
describe ::MicropostsController do
before :each do
@post = FactoryGirl.create(:micropost)
end
it "tests the instance variable in create method" do
post :create, micropost: FactoryGirl.attributes_for(:micropost)
assigns(:micropost).should eq(@post)
end
私のFactoryGirlファイルは
FactoryGirl.define do
factory :micropost do
content "Hello there Bob!"
user_id "1"
#even if I got rid of the double quotations around 1, the stringify key error still
#pops up
end
end
これがマイクロポストコントローラーの作成アクションコードです...
def create
@micropost = Micropost.new(params[:micropost])
respond_to do |format|
if @micropost.save
format.html { redirect_to @micropost, notice: 'Micropost was successfully create.'
}
else
format.html { render action: "new" }
end
end
end