Module: RSpec::Matchers::FailMatchers
- Defined in:
- lib/rspec/matchers/fail_matchers.rb
Overview
Instance Method Summary collapse
- 
  
      #fail(&block)  ⇒ Object 
  
    Matches if an expectation fails. 
- 
  
      #fail_including(*snippets)  ⇒ Object 
  
    Matches if an expectation fails including the provided message. 
- 
  
      #fail_with(message)  ⇒ Object 
  
    Matches if an expectation fails with the provided message. 
Instance Method Details
#fail(&block) ⇒ Object
Matches if an expectation fails
| 17 18 19 | # File 'lib/rspec/matchers/fail_matchers.rb', line 17 def fail(&block) raise_error(RSpec::Expectations::ExpectationNotMetError, &block) end | 
#fail_including(*snippets) ⇒ Object
Matches if an expectation fails including the provided message
| 34 35 36 37 38 39 | # File 'lib/rspec/matchers/fail_matchers.rb', line 34 def fail_including(*snippets) raise_error( RSpec::Expectations::ExpectationNotMetError, a_string_including(*snippets) ) end | 
#fail_with(message) ⇒ Object
Matches if an expectation fails with the provided message
| 26 27 28 | # File 'lib/rspec/matchers/fail_matchers.rb', line 26 def fail_with() raise_error(RSpec::Expectations::ExpectationNotMetError, ) end |