Class: EmailSpec::Matchers::DeliverFrom

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

Instance Method Summary collapse

Methods inherited from EmailMatcher

#address_array

Constructor Details

#initialize(email) ⇒ DeliverFrom

Returns a new instance of DeliverFrom.



83
84
85
# File 'lib/email_spec/matchers.rb', line 83

def initialize(email)
  @expected_sender = Mail::FromField.new(email).addrs.first
end

Instance Method Details

#descriptionObject



87
88
89
# File 'lib/email_spec/matchers.rb', line 87

def description
  "be delivered from #{@expected_sender}"
end

#failure_messageObject



99
100
101
# File 'lib/email_spec/matchers.rb', line 99

def failure_message
  %(expected #{@email.inspect} to deliver from "#{@expected_sender.to_s}", but it delivered from "#{@actual_sender.to_s}")
end

#failure_message_when_negatedObject Also known as: negative_failure_message



103
104
105
# File 'lib/email_spec/matchers.rb', line 103

def failure_message_when_negated
  %(expected #{@email.inspect} not to deliver from "#{@expected_sender.to_s}", but it did)
end

#matches?(email) ⇒ Boolean

Returns:

  • (Boolean)


91
92
93
94
95
96
97
# File 'lib/email_spec/matchers.rb', line 91

def matches?(email)
  @email = email
  @actual_sender = address_array{ email.header[:from].addrs }.first

  !@actual_sender.nil? &&
    @actual_sender.to_s == @expected_sender.to_s
end