module Capybara::SessionMatchers
def assert_no_current_path(path, **options)
-
(true)
-
Raises:
-
(Capybara::ExpectationNotMet)
- if the assertion hasn't succeeded during wait time
def assert_no_current_path(path, **options) _verify_current_path(path, options) { |query| raise Capybara::ExpectationNotMet, query.negative_failure_message if query.resolves_for?(self) } end