mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
22 lines
458 B
Ruby
22 lines
458 B
Ruby
require 'spec_helper'
|
|
require 'email'
|
|
|
|
describe Email do
|
|
|
|
|
|
it 'should treat a good email as valid' do
|
|
Email.is_valid?('sam@sam.com').should be_true
|
|
end
|
|
|
|
it 'should treat a bad email as invalid' do
|
|
Email.is_valid?('sam@sam').should be_false
|
|
end
|
|
|
|
it 'should allow museum tld' do
|
|
Email.is_valid?('sam@nic.museum').should be_true
|
|
end
|
|
|
|
it 'should not think a word is an email' do
|
|
Email.is_valid?('sam').should be_false
|
|
end
|
|
end
|