class RSpec::Core::Example
def finish(reporter)
Experimental RBS support (using type sampling data from the type_fusion
project).
def finish: (RSpec::Core::Reporter reporter) -> true
This signature was generated using 1 sample from 1 application.
def finish(reporter) pending_message = execution_result.pending_message if @exception execution_result.exception = @exception record_finished :failed, reporter reporter.example_failed self false elsif pending_message execution_result.pending_message = pending_message record_finished :pending, reporter reporter.example_pending self true else record_finished :passed, reporter reporter.example_passed self true end end