mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
23 lines
458 B
Ruby
23 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
|