Class: EmailSpec::Matchers::DeliverTo

Inherits:
EmailMatcher show all
Defined in:
lib/email_spec/matchers.rb

Instance Method Summary collapse

Methods inherited from EmailMatcher

#address_array

Constructor Details

#initialize(expected_email_addresses_or_objects_that_respond_to_email) ⇒ DeliverTo

Returns a new instance of DeliverTo.



46
47
48
49
50
51
52
# File 'lib/email_spec/matchers.rb', line 46

def initialize(expected_email_addresses_or_objects_that_respond_to_email)
  emails = expected_email_addresses_or_objects_that_respond_to_email.map do |email_or_object|
    email_or_object.kind_of?(String) ? email_or_object : email_or_object.email
  end

  @expected_recipients = Mail::ToField.new(emails).addrs.map(&:to_s).sort
end

Instance Method Details

#descriptionObject



54
55
56
# File 'lib/email_spec/matchers.rb', line 54

def description
  "be delivered to #{@expected_recipients.inspect}"
end

#failure_messageObject



65
66
67
# File 'lib/email_spec/matchers.rb', line 65

def failure_message
  "expected #{@email.inspect} to deliver to #{@expected_recipients.inspect}, but it delivered to #{@actual_recipients.inspect}"
end

#failure_message_when_negatedObject Also known as: negative_failure_message



69
70
71
# File 'lib/email_spec/matchers.rb', line 69

def failure_message_when_negated
  "expected #{@email.inspect} not to deliver to #{@expected_recipients.inspect}, but it did"
end

#matches?(email) ⇒ Boolean

Returns:

  • (Boolean)


58
59
60
61
62
63
# File 'lib/email_spec/matchers.rb', line 58

def matches?(email)
  @email = email
  recipients = email.header[:to] || email.header[:bcc]
  @actual_recipients = address_array{ recipients  && recipients.addrs }.map(&:to_s).sort
  @actual_recipients == @expected_recipients
end