class Capybara::RSpecMatchers::Matchers::HaveAnySelectors
Public Instance Methods
description()
click to toggle source
# File lib/isomorfeus/puppetmaster/rspec/matchers/have_selector.rb, line 63 def description 'have any selectors' end
does_not_match?(_actual)
click to toggle source
# File lib/isomorfeus/puppetmaster/rspec/matchers/have_selector.rb, line 59 def does_not_match?(_actual) el.assert_none_of_selectors(*@args, &@filter_block) end
element_matches?(el)
click to toggle source
# File lib/isomorfeus/puppetmaster/rspec/matchers/have_selector.rb, line 55 def element_matches?(el) el.assert_any_of_selectors(*@args, &@filter_block) end