我有两个Mongoid模型:User和EmailAccounts.后者嵌入在用户模型中.该配置应该没问题,因为它通常有效.
现在我正在尝试为我的用户编辑表单编写一个集成测试,如下所示:
现在我正在尝试为我的用户编辑表单编写一个集成测试,如下所示:
describe 'Add EmailAccount' do it 'Adds an email account',js: true do user = FactoryGirl.create(:user_without_email_accounts) visit edit_user_path(user) expect{ click_link 'New Email Account' within '.nested-fields' do fill_in 'Account Name',with: 'New Email Account' fill_in 'Other Field',with: 'Other Data' end click_button 'Save' }.to change(EmailAccount,:count).by(1) end end
由于EmailAccount是嵌入式模型,因此计数的更改始终为0.
我可以用任何类似的方式检查EmailAccount计数器的更改吗?或者我必须采取不同的方式?
这既不起作用:@H_502_8@
}.to change(user.email_accounts,:count).by(1)
解决方法
我有完全相同的问题,并设法通过使用这里发布的答案组合来解决它.
expect { #action }.to change { foo.reload.bars.count }.by(1)