module Capybara::RSpecMatchers::Matchers::Compound
Public Instance Methods
Source
# File lib/capybara/rspec/matchers/compound.rb, line 10 def and(matcher) And.new(self, matcher) end
Source
# File lib/capybara/rspec/matchers/compound.rb, line 14 def and_then(matcher) ::RSpec::Matchers::BuiltIn::Compound::And.new(self, matcher) end
Source
# File lib/capybara/rspec/matchers/compound.rb, line 18 def or(matcher) Or.new(self, matcher) end