summaryrefslogtreecommitdiff
path: root/test/unit/email_test.rb
blob: 739b43efad3070e680c0a89cb26df25d672a57d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'test_helper'
require 'email'

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