我在rspec中有一個測試未通過,我不知道原因。測試指責以下情況: 1) SalesmenController POST #create redirect to new team
Failure/Error: params.require(:salesmen).permit(:name, :company_id)
ActionController::ParameterMiss
我有一個Rspec的測試使用FactoryBot(FactoryGirl)如下: describe Note do
let(:note) {create(:note, title: "my test title", body: "this is the body")}
expect(note.title).to eq "my test title"
expect(n