123456789_123456789_123456789_123456789_123456789_

Class: Capybara::RSpecMatchers::Matchers::HaveTitle

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
self, WrappedElementMatcher, Base, Compound, RSpec::Matchers::Composable
Inherits: Capybara::RSpecMatchers::Matchers::WrappedElementMatcher
Defined in: lib/capybara/rspec/matchers/have_title.rb

Class Method Summary

Base - Inherited

Instance Attribute Summary

Instance Method Summary

Constructor Details

This class inherits a constructor from Capybara::RSpecMatchers::Matchers::Base

Instance Method Details

#description

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/have_title.rb', line 17

def description
  "have title #{title.inspect}"
end

#element_does_not_match?(el) ⇒ Boolean

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/have_title.rb', line 13

def element_does_not_match?(el)
  el.assert_no_title(*@args, **@kw_args)
end

#element_matches?(el) ⇒ Boolean

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/have_title.rb', line 9

def element_matches?(el)
  el.assert_title(*@args, **@kw_args)
end

#title (private)

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/have_title.rb', line 23

def title
  @args.first
end