Sha256: df3219d951d580478d5048003d31ecef24f5369ce7bfeb77a8c161bf1a3bef82

Contents?: true

Size: 1.24 KB

Versions: 7391

Compression:

Stored size: 1.24 KB

Contents

require 'rspec/expectations'

module RSpec
  module Matchers
    # Matchers for testing RSpec matchers. Include them with:
    #
    #     require 'rspec/matchers/fail_matchers'
    #     RSpec.configure do |config|
    #       config.include RSpec::Matchers::FailMatchers
    #     end
    #
    module FailMatchers
      # Matches if an expectation fails
      #
      # @example
      #   expect { some_expectation }.to fail
      def fail(&block)
        raise_error(RSpec::Expectations::ExpectationNotMetError, &block)
      end

      # Matches if an expectation fails with the provided message
      #
      # @example
      #   expect { some_expectation }.to fail_with("some failure message")
      #   expect { some_expectation }.to fail_with(/some failure message/)
      def fail_with(message)
        raise_error(RSpec::Expectations::ExpectationNotMetError, message)
      end

      # Matches if an expectation fails including the provided message
      #
      # @example
      #   expect { some_expectation }.to fail_including("portion of some failure message")
      def fail_including(*snippets)
        raise_error(
          RSpec::Expectations::ExpectationNotMetError,
          a_string_including(*snippets)
        )
      end
    end
  end
end

Version data entries

7,391 entries across 7,304 versions & 127 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.6.0/lib/rspec/matchers/fail_matchers.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
tdiary-5.0.9 vendor/bundle/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
color_me_shop-1.0.0 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
mrcooper-logstash-output-azuresearch-0.2.2 vendor/jruby/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
monero_wallet_gen-0.1.0 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
vagrant-unbundled-2.1.1.0 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb
vagrant-unbundled-2.0.4.0 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb
sb_prime_table-0.1.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
sb_prime_table-0.1.0 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
tdiary-5.0.8 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
tdiary-5.0.8 vendor/bundle/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
vagrant-unbundled-2.0.3.0 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.5.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb
tdiary-5.0.7 vendor/bundle/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
comiditaULL-0.1.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
comidita_ull-0.1.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb