Class: EmailSpec::Matchers::BccTo
- Inherits:
-
Object
- Object
- EmailSpec::Matchers::BccTo
- Defined in:
- lib/email_spec/matchers.rb
Instance Method Summary collapse
- #description ⇒ Object
- #failure_message ⇒ Object
-
#initialize(expected_email_addresses_or_objects_that_respond_to_email) ⇒ BccTo
constructor
A new instance of BccTo.
- #matches?(email) ⇒ Boolean
- #negative_failure_message ⇒ Object
Constructor Details
#initialize(expected_email_addresses_or_objects_that_respond_to_email) ⇒ BccTo
Returns a new instance of BccTo.
104 105 106 107 108 109 110 |
# File 'lib/email_spec/matchers.rb', line 104 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_email_addresses = emails.sort end |
Instance Method Details
#description ⇒ Object
112 113 114 |
# File 'lib/email_spec/matchers.rb', line 112 def description "be bcc'd to #{@expected_email_addresses.inspect}" end |
#failure_message ⇒ Object
122 123 124 |
# File 'lib/email_spec/matchers.rb', line 122 def "expected #{@email.inspect} to bcc to #{@expected_email_addresses.inspect}, but it was bcc'd to #{@actual_recipients.inspect}" end |
#matches?(email) ⇒ Boolean
116 117 118 119 120 |
# File 'lib/email_spec/matchers.rb', line 116 def matches?(email) @email = email @actual_recipients = (Array(email.bcc) || []).sort @actual_recipients == @expected_email_addresses end |
#negative_failure_message ⇒ Object
126 127 128 |
# File 'lib/email_spec/matchers.rb', line 126 def "expected #{@email.inspect} not to bcc to #{@expected_email_addresses.inspect}, but it did" end |