我有两个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计数器的更改吗?或者我必须采取不同的方式? 这既不起作用:
}.to change(user.email_accounts, :count).by(1)
答案 0 :(得分:19)
我有完全相同的问题,并设法通过使用此处发布的答案组合来解决它。
expect {
#action
}.to change { foo.reload.bars.count }.by(1)
答案 1 :(得分:2)
用新答案编辑:
我已经能够在我的Mongoid文档规范中使用这种语法:
expect {
#action
}.to change { Model.count }.by(1)
请注意,count语句在括号内,不使用:count参数。
答案 2 :(得分:0)
尝试以下:
user.reload
}.to change(user.email_accounts, :count).by(1)