aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/test/unit/mail_ext/address_equality_test.rb
blob: e4426aeae95943cd1ac47a3d014e238c83fe0111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require_relative "../../test_helper"

module MailExt
  class AddressEqualityTest < ActiveSupport::TestCase
    test "two addresses with the same address are equal" do
      assert_equal Mail::Address.new("david@basecamp.com"), Mail::Address.new("david@basecamp.com")
    end
  end
end