module Capybara::Node::Matchers

def refute_matches_selector(*args, &optional_filter_block)

TODO: remove
Deprecated
def refute_matches_selector(*args, &optional_filter_block)
  warn '`refute_matches_selector` was never meant to be in this scope unless ' \
       'using minitest.  Either replace with `assert_not_matches_selector` ' \
       "or require 'capybara/minitest'."
  assert_not_matches_selector(*args, &optional_filter_block)
end