Exception: RSpec::Core::MultipleExceptionError
- Inherits:
-
StandardError
- Object
- StandardError
- RSpec::Core::MultipleExceptionError
- Defined in:
- lib/rspec/core/formatters/exception_presenter.rb
Overview
Provides a single exception instance that provides access to
multiple sub-exceptions. This is used in situations where a single
individual spec has multiple exceptions, such as one in the it
block
and one in an after
block.
Instance Attribute Summary (collapse)
-
- (nil) aggregation_block_label
readonly
Provided only for interface compatibility with
RSpec::Expectations::MultipleExpectationsNotMetError
. -
- (Hash) aggregation_metadata
readonly
Metadata used by RSpec for formatting purposes.
-
- (Array<Exception>) all_exceptions
readonly
The list of failures and other exceptions, combined.
-
- (Array<Exception>) failures
readonly
The list of failures.
-
- (Array<Exception>) other_errors
readonly
The list of other errors.
Instance Method Summary (collapse)
-
- (void) exception_count_description
return [String] A description of the failure/error counts.
-
- (MultipleExceptionError) initialize(*exceptions)
constructor
A new instance of MultipleExceptionError.
-
- (String) message
Combines all the exception messages into a single string.
-
- (String) summary
A summary of the failure, including the block label and a count of failures.
Constructor Details
- (MultipleExceptionError) initialize(*exceptions)
Returns a new instance of MultipleExceptionError
447 448 449 450 451 452 453 454 455 456 457 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 447 def initialize(*exceptions) super() @failures = [] @other_errors = [] @all_exceptions = [] @aggregation_metadata = { :hide_backtrace => true } @aggregation_block_label = nil exceptions.each { |e| add e } end |
Instance Attribute Details
- (nil) aggregation_block_label (readonly)
Returns Provided only for interface compatibility with
RSpec::Expectations::MultipleExpectationsNotMetError
.
444 445 446 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 444 def aggregation_block_label @aggregation_block_label end |
- (Hash) aggregation_metadata (readonly)
Returns Metadata used by RSpec for formatting purposes.
440 441 442 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 440 def @aggregation_metadata end |
- (Array<Exception>) all_exceptions (readonly)
Returns The list of failures and other exceptions, combined.
437 438 439 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 437 def all_exceptions @all_exceptions end |
- (Array<Exception>) failures (readonly)
Returns The list of failures.
431 432 433 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 431 def failures @failures end |
- (Array<Exception>) other_errors (readonly)
Returns The list of other errors.
434 435 436 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 434 def other_errors @other_errors end |
Instance Method Details
- (void) exception_count_description
return [String] A description of the failure/error counts.
472 473 474 475 476 477 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 472 def exception_count_description failure_count = Formatters::Helpers.pluralize(failures.size, "failure") return failure_count if other_errors.empty? error_count = Formatters::Helpers.pluralize(other_errors.size, "other error") "#{failure_count} and #{error_count}" end |
- (String) message
RSpec does not actually use this -- instead it formats each exception individually.
Returns Combines all the exception messages into a single string.
462 463 464 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 462 def all_exceptions.map(&:message).join("\n\n") end |
- (String) summary
Returns A summary of the failure, including the block label and a count of failures.
467 468 469 |
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 467 def summary "Got #{exception_count_description}" end |