class Capybara::RSpecMatchers::Matchers::HaveCurrentPath
def current_path
def current_path @args.first end
def description
def description "have current path #{current_path.inspect}" end
def element_does_not_match?(el)
def element_does_not_match?(el) el.assert_no_current_path(current_path, **@kw_args, &@filter_block) end
def element_matches?(el)
def element_matches?(el) el.assert_current_path(current_path, **@kw_args, &@filter_block) end