Class: Capybara::RSpecMatchers::Matchers::NegatedMatcher
- Inherits:
-
Object
- Object
- Capybara::RSpecMatchers::Matchers::NegatedMatcher
- Includes:
- Compound
- Defined in:
- lib/capybara/rspec/matchers/base.rb
Instance Method Summary collapse
- #description ⇒ Object
- #does_not_match?(actual) ⇒ Boolean
- #failure_message ⇒ Object
- #failure_message_when_negated ⇒ Object
-
#initialize(matcher) ⇒ NegatedMatcher
constructor
A new instance of NegatedMatcher.
- #matches?(actual) ⇒ Boolean
Methods included from Compound
Constructor Details
#initialize(matcher) ⇒ NegatedMatcher
Returns a new instance of NegatedMatcher.
76 77 78 79 |
# File 'lib/capybara/rspec/matchers/base.rb', line 76 def initialize(matcher) super() @matcher = matcher end |
Instance Method Details
#description ⇒ Object
89 90 91 |
# File 'lib/capybara/rspec/matchers/base.rb', line 89 def description "not #{@matcher.description}" end |
#does_not_match?(actual) ⇒ Boolean
85 86 87 |
# File 'lib/capybara/rspec/matchers/base.rb', line 85 def does_not_match?(actual) @matcher.matches?(actual) end |
#failure_message ⇒ Object
93 94 95 |
# File 'lib/capybara/rspec/matchers/base.rb', line 93 def @matcher. end |
#failure_message_when_negated ⇒ Object
97 98 99 |
# File 'lib/capybara/rspec/matchers/base.rb', line 97 def @matcher. end |
#matches?(actual) ⇒ Boolean
81 82 83 |
# File 'lib/capybara/rspec/matchers/base.rb', line 81 def matches?(actual) @matcher.does_not_match?(actual) end |