module Capybara::RSpecMatchers::Matchers::Compound

def and(matcher)

def and(matcher)
  And.new(self, matcher)
end

def and_then(matcher)

def and_then(matcher)
  ::RSpec::Matchers::BuiltIn::Compound::And.new(self, matcher)
end

def or(matcher)

def or(matcher)
  Or.new(self, matcher)
end