Sha256: b3b0353172ca92cea0505688add08ce2d6c1664a64e80a4a9c57e82b2fc13b0c
Contents?: true
Size: 1.43 KB
Versions: 5
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true require_relative "base" module RSpec module Clone module ExpectationTarget # Wraps the target of an expectation with a block. # # @example # expect { something } # => ExpectationTarget::Block wrapping something # # # used with `to` # expect { actual }.to be(42) # # # with `not_to` # expect { actual }.not_to be(4) # # @note `RSpec::ExpectationTarget::Block` is not intended to be instantiated # directly by users. Use `expect` instead. class Block < Base protected # @param matcher [#matches?] The matcher. # @param negate [Boolean] The assertion is positive or negative. # # @return [nil] Write a message to STDOUT. # # @raise [SystemExit] Terminate execution immediately by calling # `Kernel.exit(false)` with a failure message written to STDERR. def absolute_requirement(matcher:, negate:) experiment = ::TestTube.invoke( @actual, isolation: false, matcher: matcher, negate: negate ) result( experiment.got.equal?(true), actual: experiment.actual, error: experiment.error, got: experiment.got, matcher: matcher, negate: negate ) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems