module Capybara::Node::Matchers
def assert_no_text(*args)
-
(true)-
Raises:
-
(Capybara::ExpectationNotMet)- if the assertion hasn't succeeded during wait time
def assert_no_text(*args) _verify_text(args) do |count, query| if query.matches_count?(count) && ((count > 0) || query.expects_none?) raise Capybara::ExpectationNotMet, query.negative_failure_message end end end