mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 12:24:55 +00:00
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
16 lines
577 B
Ruby
16 lines
577 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe EmailAddressValidator do
|
|
it 'should match valid emails' do
|
|
['test@discourse.org', 'good_user@discourse.org', 'incoming+%{reply_key}@discourse.org'].each do |email|
|
|
expect(EmailAddressValidator.valid_value?(email)).to eq(true)
|
|
end
|
|
end
|
|
|
|
it 'should not match invalid emails' do
|
|
['testdiscourse.org', 'frank@invalid_host.contoso.com', 'frank@invalid_host.com', 'test@discourse.org; a@discourse.org', 'random', ''].each do |email|
|
|
expect(EmailAddressValidator.valid_value?(email)).to eq(false)
|
|
end
|
|
end
|
|
end
|