class Capybara::RSpecMatchers::Matchers::HaveTitle

def description

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

def element_does_not_match?(el)

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

def element_matches?(el)

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

def title

def title
  @args.first
end