FIX: update group user count when bulk adding users

This commit is contained in:
Arpit Jalan
2018-02-23 14:09:49 +05:30
parent 4791b39773
commit 709f201bd4
2 changed files with 17 additions and 0 deletions

View File

@ -619,6 +619,13 @@ describe Group do
expect(group.group_users.map(&:user_id)).to contain_exactly(user.id, admin.id)
end
it 'updates group user count' do
expect {
group.bulk_add([user.id, admin.id])
group.reload
}.to change { group.user_count }.by(2)
end
end
it "Correctly updates has_messages" do