Class: Capybara::RSpecMatchers::HaveText

Inherits:
WrappedElementMatcher show all
Defined in:
lib/capybara/rspec/matchers.rb

Instance Attribute Summary

Attributes inherited from Matcher

#failure_message, #failure_message_when_negated

Instance Method Summary collapse

Methods inherited from WrappedElementMatcher

#does_not_match?, #matches?

Methods inherited from Matcher

#initialize, #wrap

Methods included from Compound

#and, #and_then, #or

Constructor Details

This class inherits a constructor from Capybara::RSpecMatchers::Matcher

Instance Method Details

#descriptionObject



152
153
154
# File 'lib/capybara/rspec/matchers.rb', line 152

def description
  "text #{format(text)}"
end

#element_does_not_match?(el) ⇒ Boolean

Returns:

  • (Boolean)


148
149
150
# File 'lib/capybara/rspec/matchers.rb', line 148

def element_does_not_match?(el)
  el.assert_no_text(*@args)
end

#element_matches?(el) ⇒ Boolean

Returns:

  • (Boolean)


144
145
146
# File 'lib/capybara/rspec/matchers.rb', line 144

def element_matches?(el)
  el.assert_text(*@args)
end

#format(content) ⇒ Object



156
157
158
# File 'lib/capybara/rspec/matchers.rb', line 156

def format(content)
  content.inspect
end