blob: e858bd57f913d82c02bf1b12444c87bc83538942 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | require 'test_helper'
class EmailTest < ActiveSupport::TestCase
  test "valid format" do
    email = Email.new(email_string)
    assert email.valid?
  end
  test "validates format" do
    email = Email.new("email")
    assert !email.valid?
  end
  def email_string
    @email_string ||= Faker::Internet.email
  end
end
 |