module Capybara::RSpecMatchers::Matchers::Compound

Public Instance Methods

and(matcher) click to toggle source
# File lib/capybara/rspec/matchers/compound.rb, line 10
def and(matcher)
  And.new(self, matcher)
end
and_then(matcher) click to toggle source
# File lib/capybara/rspec/matchers/compound.rb, line 14
def and_then(matcher)
  ::RSpec::Matchers::BuiltIn::Compound::And.new(self, matcher)
end
or(matcher) click to toggle source
# File lib/capybara/rspec/matchers/compound.rb, line 18
def or(matcher)
  Or.new(self, matcher)
end