blob: b25f46fb9281108532033729e7a1046c79bc5002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require 'test_helper'
class LocalEmailTest < ActiveSupport::TestCase
test "appends domain" do
local = LocalEmail.new(handle)
assert_equal LocalEmail.new(email), local
assert local.valid?
end
test "returns handle" do
local = LocalEmail.new(email)
assert_equal handle, local.handle
end
test "prints full email" do
local = LocalEmail.new(handle)
assert_equal email, "#{local}"
end
test "validates domain" do
local = LocalEmail.new(Faker::Internet.email)
assert !local.valid?
assert_equal ["needs to end in @#{LocalEmail.domain}"], local.errors[:email]
end
def handle
@handle ||= Faker::Internet.user_name
end
def email
handle + "@" + APP_CONFIG[:domain]
end
end
|