123456789_123456789_123456789_123456789_123456789_

Module: Capybara::RSpecMatchers::Matchers::Compound

Relationships & Source Files
Namespace Children
Modules:
Classes:
Extension / Inclusion / Inheritance Descendants
Included In:
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
self, RSpec::Matchers::Composable
Defined in: lib/capybara/rspec/matchers/compound.rb

Instance Method Summary

Instance Method Details

#and(matcher)

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/compound.rb', line 10

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

#and_then(matcher)

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/compound.rb', line 14

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

#or(matcher)

[ GitHub ]

  
# File 'lib/capybara/rspec/matchers/compound.rb', line 18

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