Commit 2f145352 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'fix-make-email-static' into 'master'

Make sure alias email would never match original user

See merge request !10037
parents f016da62 46287f36
...@@ -699,7 +699,9 @@ describe User, models: true do ...@@ -699,7 +699,9 @@ describe User, models: true do
let!(:user) { create(:user, name: 'John Doe', username: 'john.doe', email: 'john.doe@example.com' ) } let!(:user) { create(:user, name: 'John Doe', username: 'john.doe', email: 'john.doe@example.com' ) }
let!(:another_user) { create(:user, name: 'Albert Smith', username: 'albert.smith', email: 'albert.smith@example.com' ) } let!(:another_user) { create(:user, name: 'Albert Smith', username: 'albert.smith', email: 'albert.smith@example.com' ) }
let!(:email) { create(:email, user: another_user) } let!(:email) do
create(:email, user: another_user, email: 'alias@example.com')
end
it 'returns users with a matching name' do it 'returns users with a matching name' do
expect(search_with_secondary_emails(user.name)).to eq([user]) expect(search_with_secondary_emails(user.name)).to eq([user])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment