Closed hasyrails closed 4 years ago
it "指定したcardレコードが更新される" do
expect { subject }.to change { Card.find(card.id).body }.from(card.body).to(params[:body])
expect { subject }.not_to change { Card.find(card.id).description }
expect { subject }.not_to change { Card.find(card.id).created_at }
res = JSON.parse(response.body)
expect(res[0]["card"]["body"]).to eq 'UpdatedTestCardDetail' ## ここ
expect(response).to have_http_status(200)
end
Validation failed: モデル must existエラー → scheduleファクトリデータ生成時にエラーのため修正した
1アクションでrenderは1回まで
修正