module Capybara::RSpecMatchers::Compound
Public Instance Methods
and(matcher)
click to toggle source
# File lib/capybara/rspec/compound.rb, line 8 def and(matcher) Capybara::RSpecMatchers::Compound::And.new(self, matcher) end
and_then(matcher)
click to toggle source
# File lib/capybara/rspec/compound.rb, line 12 def and_then(matcher) ::RSpec::Matchers::BuiltIn::Compound::And.new(self, matcher) end
or(matcher)
click to toggle source
# File lib/capybara/rspec/compound.rb, line 16 def or(matcher) Capybara::RSpecMatchers::Compound::Or.new(self, matcher) end