Class: EmailSpec::Matchers::HaveSubject
- Inherits:
-
Object
- Object
- EmailSpec::Matchers::HaveSubject
- Defined in:
- lib/email_spec/matchers.rb
Instance Method Summary collapse
- #description ⇒ Object
- #failure_message ⇒ Object
- #failure_message_when_negated ⇒ Object (also: #negative_failure_message)
-
#initialize(subject) ⇒ HaveSubject
constructor
A new instance of HaveSubject.
- #matches?(email) ⇒ Boolean
Constructor Details
#initialize(subject) ⇒ HaveSubject
Returns a new instance of HaveSubject.
187 188 189 |
# File 'lib/email_spec/matchers.rb', line 187 def initialize(subject) @expected_subject = subject end |
Instance Method Details
#description ⇒ Object
191 192 193 194 195 196 197 |
# File 'lib/email_spec/matchers.rb', line 191 def description if @expected_subject.is_a?(String) "have subject of #{@expected_subject.inspect}" else "have subject matching #{@expected_subject.inspect}" end end |
#failure_message ⇒ Object
208 209 210 211 212 213 214 |
# File 'lib/email_spec/matchers.rb', line 208 def if @expected_subject.is_a?(String) "expected the subject to be #{@expected_subject.inspect} but was #{@given_subject.inspect}" else "expected the subject to match #{@expected_subject.inspect}, but did not. Actual subject was: #{@given_subject.inspect}" end end |
#failure_message_when_negated ⇒ Object Also known as: negative_failure_message
216 217 218 219 220 221 222 |
# File 'lib/email_spec/matchers.rb', line 216 def if @expected_subject.is_a?(String) "expected the subject not to be #{@expected_subject.inspect} but was" else "expected the subject not to match #{@expected_subject.inspect} but #{@given_subject.inspect} does match it." end end |
#matches?(email) ⇒ Boolean
199 200 201 202 203 204 205 206 |
# File 'lib/email_spec/matchers.rb', line 199 def matches?(email) @given_subject = email.subject if @expected_subject.is_a?(String) @given_subject == @expected_subject else !!(@given_subject =~ @expected_subject) end end |